這篇文章主要介紹升級(jí)php7后isset方法始終為 false怎么辦,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括滎陽(yáng)網(wǎng)站建設(shè)、滎陽(yáng)網(wǎng)站制作、滎陽(yáng)網(wǎng)頁(yè)制作以及滎陽(yáng)網(wǎng)絡(luò)營(yíng)銷(xiāo)策劃等。多年來(lái),我們專(zhuān)注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,滎陽(yáng)網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶(hù)以成都為中心已經(jīng)輻射到滎陽(yáng)省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶(hù)的支持與信任!
公司升級(jí) php7 后出現(xiàn)了一個(gè)問(wèn)題,類(lèi)似這樣 isset($post->user->name)
始終為 false
,之前的php 5.6 就很正常,laravel 版本是 5.1.35(很久沒(méi)升級(jí)了)。
先看看isset
isset
用來(lái)檢測(cè)變量是否設(shè)置
首先我們來(lái)看官方的一個(gè)例子
大致上是下面這個(gè)意思
'foobar']; public function __get($key) { if (isset($this->attributes[$key])) { return $this->attributes[$key]; } } } $post = new Post(); echo isset($post->content); // false
上面這個(gè)例子將永遠(yuǎn)返回 false
,因?yàn)?code> foo 并不是 Post
的屬性,而是 __get
取出來(lái)的
魔術(shù)方法__isset
那么怎么解決上面那個(gè)問(wèn)題呢?使用魔術(shù)方法
'foobar']; public function __get($key) { if (isset($this->attributes[$key])) { return $this->attributes[$key]; } } public function __isset($key) { if (isset($this->attributes[$key])) { return true; } return false; } } $post = new Post(); echo isset($post->content); //true
類(lèi)似 Eloquent
的例子
看著 laravel 5.1.35 的代碼,我們自己寫(xiě)一個(gè)簡(jiǎn)單的例子
先有一個(gè) Model
,簡(jiǎn)單的實(shí)現(xiàn)。__get
,__set
,__isset
class Model { // 存放屬性 protected $attributes = []; // 存放關(guān)系 protected $relations = []; public function __get($key) { if( isset($this->attributes[$key]) ) { return $this->attributes[$key]; } // 找到關(guān)聯(lián)的對(duì)象,放在關(guān)系里面 if (method_exists($this, $key)) { $relation = $this->$method(); return $this->relations[$method] = $relation; } } public function __set($k, $v) { $this->attributes[$k] = $v; } public function __isset($key) { if (isset($this->attributes[$key]) || isset($this->relations[$key])) { return true; } return false; } }
然后我們定義一個(gè) Post Moel
和一個(gè) User Moel
class Post extends Model { protected function user() { $user = new User(); $user->name = 'user name'; return $user; } } class User extends Model { }
好了來(lái)驗(yàn)證一下isset
$post = new Post(); echo 'isset 發(fā)帖用戶(hù):'; echo isset($post->user) ? 'true' : 'false'; // false echo PHP_EOL; echo 'isset 發(fā)帖用戶(hù)的名字:'; echo isset($post->user->name) ? 'true' : 'false'; // false echo PHP_EOL; echo '發(fā)帖用戶(hù)的名字:'; echo $post->user->name; // user name echo PHP_EOL; echo '再次判斷 isset 發(fā)帖用戶(hù)的名字:'; echo isset($post->user->name) ? 'true' : 'false'; // true echo PHP_EOL;
答案
分析上面的結(jié)果,感覺(jué)像是 php 7 isset
方法對(duì)對(duì)象的判斷有了變化,如果先執(zhí)行一次,$post->user->name
,也就是將 user 放在 post
的 relations
中,這樣 isset($post->user)
為 true
,隨后 isset($post->user->name)
才為 true
。
最后在 Eloquent model
的 git log
中 找到了答案,
PHP 7 has fixed a bug with __isset which affects both the native isset and empty methods. This causes specific issues with checking isset or empty on relations in Eloquent. In PHP 7 checking if a property exists on an unloaded relation, for example isset($this->relation->id) is always returning false because unlike PHP 5.6, PHP 7 is now checking the offset of each attribute before chaining to the next one. In PHP 5.6 it would eager load the relation without checking the offset. This change brings back the intended behavior of the core Eloquent model __isset method for PHP 7 so it works like it did in PHP 5.6. For reference, please check the following link, specifically Nikita Popov's comment (core PHP dev) - https://bugs.php.net/bug.php?id=69659
大致上是 php7 isset 判斷的時(shí)候,會(huì)依次判斷。php5.6 則會(huì)預(yù)加載關(guān)系。其實(shí) laravel 也早就做了相關(guān)的處理,所以升級(jí) laravel 后,自然也就沒(méi)有這個(gè)問(wèn)題了。
以上是升級(jí)php7后isset方法始終為 false怎么辦的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!