我将变量声明为$Catalogurl = "test";
现在我想在这一行连接到'cataloglink',这样'link'将是'test'+'cataloglink'中的变量。我该怎么做?
'link' => $node->getElementsByTagName('cataloglink')->item(0)->nodeValue,
由于
答案 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