设置然后在IF语句中使用变量?

时间:2018-09-25 12:58:27

标签: php

如果使用这样的代码行,PHP版本在解析此内容(或在任何地方产生任何问题)之间是否有任何区别:

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

Auth::routes();

Route::get('/home', 'HomeController@index')->name('home');

是否可能没有在if ( file_exists($x="myfile") && include($x) ) { ..... 中设置$x

1 个答案:

答案 0 :(得分:1)

在所有可以使用的PHP版本上(也许早于4.4的php版本除外)。

我已经使用onlinephpfunctions中的sandbox对此进行了测试。