如何让PHP用双引号来评估静态变量?
我想做这样的事情:
log("self::$CLASS $METHOD entering");
我尝试了各种{}组合来获取self :: $ CLASS的变量值,但没有任何效果。我目前已经解决了字符串连接问题,但输入时很难:
log(self::$CLASS . " $METHOD entering");
答案 0 :(得分:23)
抱歉,你做不到。它只适用于简单的表达式。请参阅here。
答案 1 :(得分:5)
不幸的是,目前还没办法做到这一点。此处其中一个答案中的示例不起作用,因为{${self::$CLASS}}
不会返回self::$CLASS
的内容,但会返回名称为self::$CLASS
的变量内容。
以下是一个示例,它不会返回myvar
,而是aaa
:
$myvar = 'aaa';
self::$CLASS = 'myvar';
echo "{${self::$CLASS}}";
答案 2 :(得分:3)
我不知道您问题的答案,但您可以使用__METHOD__
magic constant显示班级名称和方法。
答案 3 :(得分:2)
使用存储在变量中的匿名身份函数。这样,您$
之后会立即{
:
$I = function($v) { return $v; };
$interpolated = "Doing {$I(self::FOO)} with {$I(self::BAR)}";
(我在这个例子中使用了类常量,但这也适用于静态变量)。
答案 4 :(得分:1)
忍受串联。 You'd be surprised how inefficient variable interpolation in strings can be
虽然这可能属于预优化或微优化的范畴,但我不认为你在这个例子中实际上没有任何优雅。
就个人而言,如果我要对其中一个进行微小的优化,我的选择“更快”和“更容易打字” - 我会选择“更快”。因为你只输了几次,但它可能会执行数千次。
答案 5 :(得分:0)
我知道这是一个古老的问题,但是奇怪的是,没有人建议使用[sprintf][1]
函数。
说:
<?php
class Foo {
public static $a = 'apple';
}
您可以将其用于:
echo sprintf( '$a value is %s', Foo::$a );
在您的示例中,其为:
log(
sprintf ( ' %s $METHOD entering', self::$CLASS )
);
答案 6 :(得分:0)
//define below
function EXPR($v) { return $v; }
$E = EXPR;
//now you can use it in string
echo "hello - three is equal to $E(1+2)";
答案 7 :(得分:0)
<?php
class test {
public $static = 'text';
public $self = __CLASS__;
// static Method
static function author() {
return "Frank Glück";
}
// static variable
static $url = 'https://www.dozent.net';
public function dothis() {
$self = __CLASS__;
echo <<<TEST
{${!${''}=static::author()}} // works
{$self::author()} // works
{$this->self::author()} // works
${!${''}=self::author()} // works
{${$this->self}}::author()}} // don't works
${${self::author()}} // do/don't works but with notice
${@${self::author()}} // works but with @ !
TEST;
}
}
$test = 'test'; // this is the trick, put the Classname into a variable
echo "{$test::author()} {$$test::$url}";
echo <<<HTML
<div>{$test::author()}</div>
<div>{$$test::$url}</div>
HTML;
$test = new test();
$test->dothis();
答案 8 :(得分:-1)
是的,可以这样做:
log("{${self::$CLASS}} $METHOD entering");