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
网友评论