我在 php 文件中有这一行。它创建 URL 路径:
$output = l($image, "article/{$article->aid}", $options);
输出很好,但我想在它后面加上一个“#”符号。例如:
/articles/example#comments
我尝试了不同的组合,但没有找到合适的组合。我希望加号组合会起作用,但它总是指向根:
$output = l($image, "article/{$article->aid}"+"#comments", $options);
Result is "/"
有人知道该怎么做吗?谢谢!