показывает define ('LARAVEL_START', microtime (true)) - когда я перевожу версию php на 7.3 - PullRequest
1 голос
/ 03 апреля 2019

Я получил следующее сообщение (Доступ к домашней странице приложений) при обновлении среды разработки до PHP 7.3

*/ 

  define('LARAVEL_START', microtime(true)); 

/* 
|-------------------------------------------------------------------------- 
| Turn On The Lights 
|-------------------------------------------------------------------------- 
| 
| We need to illuminate PHP development, so let us turn on the lights. 
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send 
| the responses back to the browser and delight our users. 
| 
*/ 

$app = require_once __DIR__.'/../bootstrap/app.php'; 

/* 
|-------------------------------------------------------------------------- 
| Run The Application 
|-------------------------------------------------------------------------- 
| 
| Once we have the application, we can handle the incoming request 
| through the kernel, and send the associated response back to 
| the client's browser allowing them to enjoy the creative 
| and wonderful application we have prepared for them. 
| 
*/ 

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class); 
$response = $kernel->handle( $request = Illuminate\Http\Request::capture() ); 
$response->send(); 
$kernel->terminate($request, $response);

Как с этим справиться?

Ответы [ 3 ]

1 голос
/ 03 апреля 2019

Это проблема установки PHP 7.3. Я переустановил это было исправлено.

0 голосов
/ 03 апреля 2019

Если вы видите код в браузере, у вас неправильно установлен PHP

Вы можете проверить, установлена ​​ли версия PHP на локальном компьютере или нет, с помощью командной строки php -v

0 голосов
/ 03 апреля 2019

Некоторая часть скрипта отсутствует, но кажется, что ваши php файлы обрабатываются как текст!Проверьте настройки вашего сервера после обновления до php 7.3.Я думаю, что проблема с любым PHP-скриптом

...