如何将变量与下划线和其他单词组合?

时间:2012-05-14 20:50:28

标签: php variables concatenation

我需要将$变量与下划线和单词结合起来:

$ agent =代理商ID 这句话“被拒绝了。”

$newvar = $agent_declined;

我该怎么做?

4 个答案:

答案 0 :(得分:3)

像这样:$newvar = $agent . "_declined";

在PHP中,您使用.

组合字符串

答案 1 :(得分:3)

使用连接:

<?php

$newvar = $agent . "_declined";

?>

阅读here!

答案 2 :(得分:1)

喜欢这个吗?

$agent_declined = "foobar";
$id = "declined";
$varname = "\$agent_" . $id
$newvar = $$varname; // should give foobar

我建议不要使用双$$,这令人困惑。

答案 3 :(得分:1)

试试这个:

${$variableName.'_declined'} = 'foo';

有关详细信息,请参阅PHP: Variable variables