bootstrap.php 551 B

12345678910111213141516171819
  1. <?php
  2. /*
  3. * This file is part of the Sonata Project package.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. // fix encoding issue while running text on different host with different locale configuration
  11. setlocale(LC_ALL, 'en_US.UTF-8');
  12. if (file_exists($file = __DIR__.'/autoload.php')) {
  13. require_once $file;
  14. } elseif (file_exists($file = __DIR__.'/autoload.php.dist')) {
  15. require_once $file;
  16. }