bootstrap.php 323 B

1234567891011121314
  1. <?php
  2. require dirname(__FILE__) . '/PHPParser/Autoloader.php';
  3. PHPParser_Autoloader::register();
  4. /*
  5. * lcfirst() was added in PHP 5.3, so we have to emulate it for PHP 5.2.
  6. */
  7. if (!function_exists('lcfirst')) {
  8. function lcfirst($string) {
  9. $string[0] = strtolower($string[0]);
  10. return $string;
  11. }
  12. }