筆記018 PHP中的 constant() 函數

來源:互聯網
上載者:User

文法

mixed constant ( string $name )

說明

constant() 函數用於返回一個常量的值。當預先不知道常量的名稱,卻需要取得該常量的值的時候,該函數特別有用。

通過向 $name 參數傳遞常量的名稱,便可獲得對應常量的值。

該函數對於類常量依然適用。

傳回值

返回常量的值,若常量未定義,則返回 null,但此時會產生一個 E_WARNING 層級的錯誤。

樣本

  <?php    define("MAXSIZE", 100);    echo MAXSIZE;    echo constant("MAXSIZE"); // same thing as the previous line    interface bar {        const test = 'foobar!';    }    class foo {        const test = 'foobar!';    }    $const = 'test';    var_dump(constant('bar::'. $const)); // string(7) "foobar!"    var_dump(constant('foo::'. $const)); // string(7) "foobar!"

以上就是筆記018 PHP中的 constant() 函數的內容,更多相關內容請關注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.