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.
我正在使用这个:
$description = token_replace('[node:field-description]', array('node' => $node));
在我为规则创建的 php 代码中。但是当描述包含引号时,它会给我一个 PHP Parse 错误:语法错误,意外的 T_CONSTANT_ENCAPSED_STRING。我想这是因为报价把事情搞砸了。
所以我的问题是如何用 php 转义这个令牌值?
尝试
str_replace('"', "", $node); str_replace("'", "", $node);
据我 rem 节点不是字符串,所以请确保使用转换值。