美文网首页
laravel 版本查看

laravel 版本查看

作者: 南滨月亮 | 来源:发表于2017-05-22 14:06 被阅读0次

1:最简单的用命令行实现
<pre>
php artisan --version
</pre>


Paste_Image.png

2:查看文件
<pre>
vendor\laravel\framework\src\Illuminate\Foundation\Application.php
</pre>


Paste_Image.png

3:可以写在路由里

5.4版本的路由文件夹是routes。我们可以写在routes\web.php里。
<pre>
Route::get('laravel-version', function(){
$laravel = app();
return "Your Laravel version is ".$laravel::VERSION;
});
</pre>
转自【B5教程网】:http://www.bcty365.com/content-153-5785-1.html

相关文章

网友评论

      本文标题:laravel 版本查看

      本文链接:https://www.haomeiwen.com/subject/jtgbxxtx.html