PHP 常量筆記

來源:互聯網
上載者:User

標籤:php 常量

JS擼多了 PHP都快不會玩了。好好複習下

<?php     header(‘Content-type: text/html; charset=utf-8‘);    define(‘PATH‘, ‘safsfwqf‘); // 定義 設定第三個參數為true為大小寫不敏感 常量不能重新賦值    echo PATH;                  // 使用定義的常量 C:/xampp        if( ! defined(‘PATH‘) ) {   // 判斷常量有沒有定義 已經定義返回true        define(‘PATH‘, ‘qweas‘);    }    defined(‘PATH‘) or define(‘PATH‘, ‘hehe‘); // 和上面相同    echo ‘<hr />‘;        echo constant(‘PATH‘); // 返回一個常量的值     echo ‘<hr />‘;    //print_r( get_defined_constants() ); // 返回所有常量    $user_defined_constants=get_defined_constants(true)[‘user‘]; // 擷取使用者定義的常量    //print_r($user_defined_constants);        // 魔法常量(變數)    echo __FILE__;  // 擷取當前指令檔的完整路徑和檔案名稱(絕對路徑)    echo __DIR__;   // 檔案所在的目錄 等價於dirname(__FILE__) basename返迴文件名 dirname返迴路徑

太困了,希望快點下班

PHP 常量筆記

聯繫我們

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