在php中将字符串与变量连接起来

时间:2014-01-17 20:08:18

标签: php concatenation

我将变量声明为$Catalogurl = "test";现在我想在这一行连接到'cataloglink',这样'link'将是'test'+'cataloglink'中的变量。我该怎么做?

'link' => $node->getElementsByTagName('cataloglink')->item(0)->nodeValue,

由于

2 个答案:

答案 0 :(得分:0)

'link' => $Catalogurl . $node->getElementsByTagName('cataloglink')->item(0)->nodeValue,

有关详细信息,请参阅http://www.php.net/manual/en/language.operators.string.php

答案 1 :(得分:0)

尝试使用concat运算符“。” 使用它的方法就是将两个想要连接的变量放在它的两侧。所以:

$hello = "Hello"." World";

如果你有时间我会建议查看文档,那里有很多简洁的东西。 http://www.php.net/manual/en