我想以最佳方式检查 PHP 中定义的常量
在 PHP 中,根据您的错误报告级别,如果您没有定义常量,然后像这样调用它:
<?= MESSAGE ?>
它可能会打印常量的名称而不是值!
因此,我编写了以下函数来解决这个问题,但我想知道您是否知道如何用更快的代码来做到这一点? 我的意思是,当我在没有这个函数的情况下进行速度测试时,我可以在 0.0073 秒内定义和转储 500 个常量。 但是使用下面的这个函数,它会切换到 0.0159 到 0.0238 秒之间的任何时间。 因此,将微秒降到尽可能小就好了。 为什么? 因为我想用它来做模板。 我认为必须有一种比用我想要显示的每个变量切换错误报告更好的方法。
function C($constant) {
$nPrev1 = error_reporting(E_ALL);
$sPrev2 = ini_set('display_errors', '0');
$sTest = defined($constant) ? 'defined' : 'not defined';
$oTest = (object) error_get_last();
error_reporting($nPrev1);
ini_set('display_errors', $sPrev2);
if (strpos($oTest->message, 'undefined constant')>0) {
return '';
} else {
return $constant;
}
}
<?= C(MESSAGE) ?>
In PHP, depending on your error reporting level, if you don't define a constant and then call it like so:
<?= MESSAGE ?>
It may print the name of the constant instead of the value!
So, I wrote the following function to get around this problem, but I wanted to know if you know a way to do it in faster code? I mean, when I did a speed test without this function, I can define and dump 500 constants in .0073 seconds. But use this function below, and this switches to anywhere from .0159 to .0238 seconds. So, it would be great to get the microseconds down to as small as possible. And why? Because I want to use this for templating. I'm thinking there simply has to be a better way than toggling the error reporting with every variable I want to display.
function C($constant) {
$nPrev1 = error_reporting(E_ALL);
$sPrev2 = ini_set('display_errors', '0');
$sTest = defined($constant) ? 'defined' : 'not defined';
$oTest = (object) error_get_last();
error_reporting($nPrev1);
ini_set('display_errors', $sPrev2);
if (strpos($oTest->message, 'undefined constant')>0) {
return '';
} else {
return $constant;
}
}
<?= C(MESSAGE) ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只要您不介意在常量上使用引号,您就可以这样做:
输出:
否则,如果不捕获使用未定义常量引发的通知,就无法绕过它。
As long as you don't mind using quotes on your constants, you can do this:
Output:
Otherwise, there's no way around it without catching the notice thrown by using an undefined constant.
这
不会触发任何 E_NOTICE 消息,因此您不必设置和重置 error_reporting。
try
This shouldn't trigger any E_NOTICE messages, so you don't have to set and reset error_reporting.