php 获取系统,php 获取系统常量的方法

在php中,有很多的系统常量,比如取当前的行号 (__LINE__),文件 (__FILE__),目录 (__DIR__),函数名 (__FUNCTION__),类名(__CLASS__),方法名(__METHOD__) 和名

字空间 (__NAMESPACE__)等。

以上常量,可以用于调试,也可以用于一些特殊用途。

比如,可以在include其它文件的时候使用?__FILE__ (当然,也可以在 PHP 5.3以后使用 __DIR__ )。

例子:

/**

* php 获取系统常量

* by www.jbxue.com

*/

// this is relative to the loaded script’s path

// it may cause problems when running scripts from different directories

require_once(‘config/database.php’);

// this is always relative to this file’s path

// no matter where it was included from

require_once(dirname(__FILE__) . ‘/config/database.php’);

?>

使用 __LINE__ 来输出一些debug信息:

// some code

// …

my_debug(“some debug message”, __LINE__);

/* 输出

Line 4: some debug message

*/

// some more code

// …

my_debug(“another debug message”, __LINE__);

/* 输出

Line 11: another debug message

*/

function my_debug($msg, $line) {

echo “Line $line: $msg\n”;

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值