php empty不是沒有屬性的對象會返回true嗎?

來源:互聯網
上載者:User

回複內容:


參考PHP文檔:empty — 檢查一個變數是否為空白

很顯然 obj 不是空的~

測試一下:

print_r($obj);

Game Object ( )


空還是非空是有定義的,你別猜啊……


對象都已經被執行個體化了, 那麼empty肯定是不會空的, 我理解的empty

empty(''); //trueempty(0); //trueempty('0'); //trueempty(NULL); //trueempty([]); //trueempty(array(array())); //false$a;//只定義不賦值empty($a);//trueclass AA {}$aa = new AA();empty($aa);// false, 對象真實存在, 不為空白class BB {    public $name;}$bb = new BB();empty($bb->name); //true

這個很明顯不為空白啊, empty 一般是判斷變數用的, 其實你這判斷一個對象 也沒實際作用,
你new一個Null 物件, 跟賦值一個空變數或者空數組是不一樣的,
或者你可以列印出來看下, object(Game)[1]
這是列印出來的,

以上就是php empty不是沒有屬性的對象會返回true嗎?的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.