Laravel示例web.php丢失?>附件

时间:2018-08-24 02:11:40

标签: php laravel

<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Route::get('/', function () {
    return view('welcome');
});

作为框架的一部分提供给我的来自web.php的这段代码为什么没有像所有?>文件那样的末尾带有.php呢?抱歉,但是我是php和Laravel的新手,只是想尝试从教科书中编写一些示例路线。

1 个答案:

答案 0 :(得分:2)

这可以防止在PHP结束标记之后意外添加空格或换行,这可能会导致不良影响,因为当程序员不打算在脚本中的该点发送任何输出时,PHP将开始输出缓冲。