使用 php 转义 plist 的字符串值

发布于 2024-08-24 04:28:48 字数 411 浏览 6 评论 0原文

如何使用 php 将包含随机字符的字符串转义为 plist 文件? htmlentities() 似乎不够严格。例如:

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
    <string><?php echo htmlentities("@!£$%^&*)}{:|<>/");?></string>
</plist>

不起作用。

How can I escape a string containing random characters with php for a plist file? htmlentities() seems doesn't seem to be strict enough. For example:

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
    <string><?php echo htmlentities("@!£$%^&*)}{:|<>/");?></string>
</plist>

doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谎言 2024-08-31 04:28:48

CDATA 应该是正确的方法

 <plist version="1.0">
  <string><![CDATA[<?php echo "@!£$%^&*)}{:|<>/"; ?>]]></string>
 </plist>

:您必须转义的内容是实际的 opener 本身。

如果由于某些原因不起作用,rawurlencode() 将所有非字母数字字符转换为 RFC 1738 代码,您的目标可能更容易理解。

CDATA should be the correct way:

 <plist version="1.0">
  <string><![CDATA[<?php echo "@!£$%^&*)}{:|<>/"; ?>]]></string>
 </plist>

The only thing in the content you would have to escape is the actual <![CDATA[ opener itself.

If that doesn't work for some reasons, rawurlencode() turns all non-alphanumeric characters into RFC 1738 codes, which your target may be able to digest more easily.

︶葆Ⅱㄣ 2024-08-31 04:28:48

不是所有的 plist 都以 开头吗?

htmlentities 应该可以工作。您只需将 & 转义为 &,将 < 转义为 < 和 <代码>> 到>

Don't all plist start with a <dict>?

htmlentities should work. You only need to escape & to &, < to < and > to >.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文