我想以最佳方式检查 PHP 中定义的常量

发布于 2024-07-09 18:14:59 字数 812 浏览 8 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

本王不退位尔等都是臣 2024-07-16 18:14:59

只要您不介意在常量上使用引号,您就可以这样做:

function C($constant) {
    return defined($constant) ? constant($constant) : 'Undefined';
}

echo C('MESSAGE') . '<br />';

define('MESSAGE', 'test');

echo C('MESSAGE') . '<br />';

输出:

未定义

测试

否则,如果不捕获使用未定义常量引发的通知,就无法绕过它。

As long as you don't mind using quotes on your constants, you can do this:

function C($constant) {
    return defined($constant) ? constant($constant) : 'Undefined';
}

echo C('MESSAGE') . '<br />';

define('MESSAGE', 'test');

echo C('MESSAGE') . '<br />';

Output:

Undefined

test

Otherwise, there's no way around it without catching the notice thrown by using an undefined constant.

青瓷清茶倾城歌 2024-07-16 18:14:59

if (isset(constant($constant)) ...

不会触发任何 E_NOTICE 消息,因此您不必设置和重置 error_reporting。

try

if (isset(constant($constant)) ...

This shouldn't trigger any E_NOTICE messages, so you don't have to set and reset error_reporting.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文