Guest User

Untitled

a guest
Sep 25th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. Warning: Unexpected character in input: '' (ASCII=92) state=1
  2.  
  3. Parse error: syntax error, unexpected T_STRING
  4.  
  5. <?php
  6. echo 'Versão Atual do PHP: ' . phpversion();
  7.  
  8. <?php
  9.  
  10. define('LARAVEL_START', microtime(true));
  11.  
  12. require __DIR__.'/../vendor/autoload.php';
  13.  
  14. $app = require_once __DIR__.'/../bootstrap/app.php';
  15.  
  16. $kernel = $app->make(IlluminateContractsHttpKernel::class);
  17.  
  18. $response = $kernel->handle(
  19. $request = IlluminateHttpRequest::capture()
  20. );
  21.  
  22. $response->send();
  23.  
  24. $kernel->terminate($request, $response);
Advertisement
Add Comment
Please, Sign In to add comment