PHP中類屬性與類靜態變數的存取方法執行個體

來源:互聯網
上載者:User
這篇文章主要介紹了PHP中類屬性與類靜態變數的存取方法,結合執行個體形式對比分析了php中類的屬性、靜態變數及常量的各種訪問技巧,需要的朋友可以參考下

具體如下:

<?php/* PHP類屬性與類靜態變數的訪問 * Created on 2016-7-13 */class test{ const constvar='hello world'; static $staticvar='hello world'; function getStaticvar(){   return self::$staticvar; }}$obj=new test();echo test::constvar; //輸出'hello world'echo @test::staticvar; //出錯,staticvar 前必須加$才能訪問,這是容易和類常量(per-class常量)容易混淆的地方之一echo test::$staticvar; //輸出'hello world'$str='test';//echo $str::$staticvar; //出錯,類名在這不能用變數動態化//echo $str::constvar; //出錯原因同上//在類名稱存在一個變數中處於不確定(動態)狀態時,只能以以下方式訪問類變數$obj2=new $str();echo $obj2->getStaticvar();?>

運行結果為:hello world

總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.