字符串在另一个字符串内的文本末尾

时间:2013-04-21 12:16:27

标签: php string formatting

我想在另一个字符串中使用一个字符串,如下所示:

  

$ url =“http://www.sample.com/index.php?nr= $ string [0]”;

我该怎么在最后插入这个字符串?

3 个答案:

答案 0 :(得分:0)

$url = "http://www.sample.com/index.php?nr={$string[0]}";

$url = "http://www.sample.com/index.php?nr=" . $string[0];

答案 1 :(得分:0)

就像你的例子

$url = "http://www.sample.com/index.php?nr=$string[0]";

答案 2 :(得分:0)

作为问题的解决方案,请尝试执行以下代码段。

您需要使用点运算符(。)

在php中连接字符串
 $url = "http://www.sample.com/index.php?nr=".$string[0];