PHP - 将 JSON 转换为 Plist?

发布于 2024-12-05 13:00:06 字数 47 浏览 0 评论 0原文

如何使用 PHP(以及任何必要的库)将 JSON 数据转换为 Plist 数据?

How would one use PHP (and whatever necessary libraries) to convert JSON data to Plist data?

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

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

发布评论

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

评论(2

流年里的时光 2024-12-12 13:00:06

我将解码数据,然后使用 CFPropertyList 对其进行编码,

简单地说:

$plist = new CFPropertyList();    
$td = new CFTypeDetector();  
$guessedStructure = $td->toCFType( json_decode($json) );
$plist->add( $guessedStructure );
$xml = $plist->toXML();

I would decode the data and then encode it using CFPropertyList

Simply:

$plist = new CFPropertyList();    
$td = new CFTypeDetector();  
$guessedStructure = $td->toCFType( json_decode($json) );
$plist->add( $guessedStructure );
$xml = $plist->toXML();
森罗 2024-12-12 13:00:06

先将其转入数组。之后,用它做任何你想做的事

json_decode($json);

Transfer it into an array first. After that, do whatever you want with that

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