# wpide/2.2/PHP-Parser/lib/bootstrap.php

WPIDE – File Manager &amp; Code Editor, version 2.2. 14 lines.

- Page: https://pluginprobe.com/plugins/wpide/2.2/code/PHP-Parser/lib/bootstrap.php
- Raw: https://pluginprobe.com/plugins/wpide/2.2/raw/PHP-Parser/lib/bootstrap.php
- Modified: 2013-01-17T19:36:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpide/2.2/code/PHP-Parser/lib/bootstrap.php#L10-L20`.

```php
<?php

require dirname(__FILE__) . '/PHPParser/Autoloader.php';
PHPParser_Autoloader::register();

/*
 * lcfirst() was added in PHP 5.3, so we have to emulate it for PHP 5.3.
 */
if (!function_exists('lcfirst')) {
    function lcfirst($string) {
        $string[0] = strtolower($string[0]);
        return $string;
    }
}
```
