-3

我在 php 文件中有这一行。它创建 URL 路径:

$output = l($image, "article/{$article->aid}", $options);

输出很好,但我想在它后面加上一个“#”符号。例如:

/articles/example#comments

我尝试了不同的组合,但没有找到合适的组合。我希望加号组合会起作用,但它总是指向根:

$output = l($image, "article/{$article->aid}"+"#comments", $options);

Result is "/"

有人知道该怎么做吗?谢谢!

4

1 回答 1

1

你不能用“+”连接一个字符串所以而不是

$output = l($image, "article/{$article->aid}"+"#comments", $options);

这将是

$output = l($image, "article/{$article->aid}"."#comments", $options);
于 2012-11-15T23:14:13.183 回答