Answers:
没有。
使用字符串,除了常量标识符外,PHP无法分辨字符串数据。这适用于PHP中的任何字符串格式,包括heredoc。
constant()
是获取常量的另一种方法,但是如果没有连接,也不能将函数调用放入字符串中。
define('ANIMAL','turtles'); $constant='constant'; echo "I like {$constant('ANIMAL')}";
是的(以某种方式;)):
define('FOO', 'bar');
$test_string = sprintf('This is a %s test string', FOO);
这可能不是您要的目的,但我认为,从技术上讲,这不是串联,而是替换,从这个假设出发,它在字符串中包含一个常量而没有串联。
要在字符串中使用常量,可以使用以下方法:
define( 'ANIMAL', 'turtles' );
$constant = 'constant';
echo "I like {$constant('ANIMAL')}";
可以将任何函数名称放在变量中,并在双引号字符串内用参数调用它。也可以使用多个参数。
$fn = 'substr';
echo "I like {$fn('turtles!', 0, -1)}";
产生
我喜欢乌龟
如果您正在运行PHP 5.3+,则还可以使用匿名函数。
$escape = function ( $string ) {
return htmlspecialchars( (string) $string, ENT_QUOTES, 'utf-8' );
};
$userText = "<script>alert('xss')</script>";
echo( "You entered {$escape( $userText )}" );
如预期产生正确转义的html。
如果到现在为止,您印象中函数名可以是任何可调用的,则不是这种情况,因为在传递给is_callable
字符串时返回true的数组在字符串中使用时将导致致命错误:
class Arr
{
public static function get( $array, $key, $default = null )
{
return is_array( $array ) && array_key_exists( $key, $array )
? $array[$key]
: $default;
}
}
$fn = array( 'Arr', 'get' );
var_dump( is_callable( $fn ) ); // outputs TRUE
// following line throws Fatal error "Function name must be a string"
echo( "asd {$fn( array( 1 ), 0 )}" );
这种做法是不明智的,但有时会导致代码更具可读性,所以这取决于您-可能存在。
$_ = create_function('$a','return $a;'); $s = "I like {$_(ANIMAL)}"
。Thetaiko的版本消除了引号的需要,并且下划线很可爱。
define( 'FOO', 'bar');
$FOO = FOO;
$string = "I am too lazy to concatenate $FOO in my string";
如果您真的想在不连接的情况下回显常量,则可以使用以下解决方案:
define('MY_CONST', 300);
echo 'here: ', MY_CONST, ' is a number';
注意:在此示例中,echo需要许多参数(请看逗号),因此它不是真正的串联
Echo表现为一个函数,它需要更多的参数,比并置更为有效,因为它不必先进行并置然后进行回显,它只回显所有内容,而无需创建新的String并置对象:))
编辑
另外,如果您考虑串联字符串,将字符串作为参数传递或使用“编写整个字符串,那么,(逗号版本)总是最快的,下一步是。(与'单引号串联),而最慢的字符串构建方法是使用双引号”,因为以这种方式编写的表达式必须根据声明的变量和函数求值。
最简单的方法是
define('MY_CONSTANT', 42);
$my_constant = MY_CONSTANT;
echo "This is my constant: $my_constant";
另一种使用方式 (s)printf
define('MY_CONSTANT', 42);
// Note that %d is for numeric values. Use %s when constant is a string
printf('This is my constant: %d', MY_CONSTANT);
// Or if you want to use the string.
$my_string = sprintf('This is my constant: %d', MY_CONSTANT);
echo $my_string;
正如其他人指出的那样,您不能这样做。PHP具有constant()
无法直接在字符串中调用的功能,但是我们可以轻松解决此问题。
$constant = function($cons){
return constant($cons);
};
以及其用法的基本示例:
define('FOO', 'Hello World!');
echo "The string says {$constant('FOO')}";
$constant = 'constant';
而不是定义另一个函数,并且该函数已经存在,因此可以相同地工作。
这是其他答案的一些替代方法,这些答案似乎主要集中在“ {$}”把戏上。尽管不能保证速度。这都是纯语法糖。对于这些示例,我们假设定义了以下常量集。
define( 'BREAD', 'bread' ); define( 'EGGS', 'eggs' ); define( 'MILK', 'milk' );
使用extract()
这很不错,因为结果与变量相同。首先,您创建一个可重用的函数:
function constants(){ return array_change_key_case( get_defined_constants( true )[ 'user' ] ); }
然后从任何范围调用它:
extract( constants() );
$s = "I need to buy $bread, $eggs, and $milk from the store.";
在这里,它会常量化为小写以便于使用,但是您可以删除array_change_key_case()使其保持原样。如果您已经有冲突的局部变量名称,则常量将不会覆盖它们。
使用字符串替换
这与sprintf()类似,但使用单个替换令牌并接受无限数量的参数。我敢肯定有更好的方法可以做到这一点,但是请原谅我的笨拙并尝试专注于其背后的想法。
和以前一样,您可以创建一个可重用的函数:
function fill(){
$arr = func_get_args(); $s = $arr[ 0 ]; array_shift( $arr );
while( strpos( $s, '/' ) !== false ){
$s = implode( current( $arr ), explode( '/', $s, 2 ) ); next( $arr );
} return $s;
}
然后从任何范围调用它:
$s = fill( 'I need to buy /, /, and / from the store.', BREAD, EGGS, MILK );
您可以使用任何所需的替换令牌,例如%或#。我在这里使用了斜杠,因为它更容易键入。
您可以使用关键字“ const”作为函数的名称来防止名称空间乱码,这很有趣:
define("FOO","foo");
${'const'} = function($a){return $a;};
echo "{$const(FOO)}"; // Prints "foo"
echo const(FOO); // Parse error: syntax error, unexpected T_CONST
您还可以使用$ GLOBALS在整个代码中传播'const'函数:
$GLOBALS['const'] = function($a){return $a;};
不确定将来使用是否安全。更糟糕的是-它看起来仍然很丑。
我相信这可以回答OP的原始问题。唯一的是,globals索引键似乎只能小写。
define('DB_USER','root');
echo "DB_USER=$GLOBALS[db_user]";
输出:
DB_USER=root
an associative array containing references to all variables
。
$db_user = 'root';