如何str_replace PHP代码的一部分
$embedCode = <<<EOF
getApplicationContent('video','player',array('id' => $iFileId, 'user' => $this->iViewer, 'password' => clear_xss($_COOKIE['memberPassword'])),true)
EOF;
$name = str_replace($embedCode,"test",$content);
我正在尝试用另一段代码替换一段代码。我可以使用较小的字符串来完成此操作,但是一旦将较大的字符串添加到 $embedCode 中,它就会抛出“意外的 T_ENCAPSED_AND_WHITESPACE”错误
$embedCode = <<<EOF
getApplicationContent('video','player',array('id' => $iFileId, 'user' => $this->iViewer, 'password' => clear_xss($_COOKIE['memberPassword'])),true)
EOF;
$name = str_replace($embedCode,"test",$content);
I'm trying to replace a section of code with another piece of code. I can do it with smaller strings but once I added the larger strings to $embedCode, it throw an "unexpected T_ENCAPSED_AND_WHITESPACE" error
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该使用
\$
转义$
如果你的目标是使用变量名称,如果你想使用变量的真实值,那么问题出在 $这->iViewer...
you should unescape the
$
using\$
IF your objective is to use the vars name, if you want to use the real value of the variables, then the problem is in $this->iViewer...
无论如何,删除 $_COOKIE 附近的 memberPassword 周围的 '
似乎您正在寻找不解释内部变量的语言构造 - 所以您必须使用不 HEREDOC 语法 - 但常规字符串定义限制为 '
或用 \ 转义 $,如 Marcx 在下面建议的那样
remove ' around the memberPassword near the $_COOKIE
anyway seems you're looking for language construction that not interprets variable inside - so then you have to use not HEREDOC syntax - but regular string definition limited with '
or escape $ with \ as Marcx propose below