码迷,mamicode.com
首页 > Web开发 > 详细

php-constant

时间:2018-11-24 14:08:16      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:UNC   ber   ant   image   method   line   __file__   __line__   图片   

<?php

/**
 * @Author: cyany_blue
 * @Date:   2018-11-24 10:30:15
 * @Last Modified by:   cyany_blue
 * @Last Modified time: 2018-11-24 10:53:36
 */
define("name", ‘just is a constant‘);
echo name."<br>";
echo constant(‘name‘).‘<br>‘;
echo __LINE__.‘<br>‘;  //The current line number 
echo __FILE__.‘<br>‘;//the current filename
function abc(){

    echo __FUNCTION__.‘<br>‘;//echo function name
}
abc();
class a{
    function __construct(){
        echo __CLASS__.‘<br>‘; //current class name
        echo ".‘<br>1354<br>‘;";
    }
    public function abc(){
        echo ‘function name<br>‘;
        echo __METHOD__.‘<br>‘;//current method name

    }
}
$abcd =new a();
$abcd->abc();
echo ‘---------------‘;


技术分享图片

php-constant

标签:UNC   ber   ant   image   method   line   __file__   __line__   图片   

原文地址:https://www.cnblogs.com/cyany/p/10011347.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!