close

PHP Magic Constants: __LINE__ , __FILE__ , __FUNCTION__ , __CLASS__ , and __METHOD__

 

<?php

print(__FILE__);

// C:\xampp\htdocs\test\xx.php

 

print(__LINE__);

// line 5

 

sayHello();

$one = new Person();

 

function sayHello(){

        print(__FUNCTION__);

        // sayHello

}

 

class Person {

        function __construct() {

                print(__CLASS__);

                // Person          

                print(__METHOD__);

                // Person::__construct

        }

}

?>

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 coolouis 的頭像
    coolouis

    村天來了

    coolouis 發表在 痞客邦 留言(0) 人氣()