Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 php 中转义以下行?
@[myvaule]"$array[$i]".docx
我试过这样做`@[m]"$array[$i]"`.docx,但我得到了错误
`@[m]"$array[$i]"`.docx
解析错误:语法错误,意外的 T_VARIABLE,期待 ')'
我试过这个:
@[rrent]".array[$i].".docx"
array[$i]但是像这样之后我得到了一个额外的空间[myrstarray .docx
array[$i]
[myrstarray .docx
如果有人可以提供帮助,那就太棒了。
如果你想用它做一个字符串,最好把它放在一个像这样的变量中,
$filename = "[mytorrent]{$array[$i]}.docx";
阅读有关PHP 字符串的更多信息。