从PHP中的.plist ios中获取数据

时间:2017-03-20 17:04:57

标签: php ios xml plist

所以这是plist

<?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">
<dict>
    <key>New item</key>
    <array>
        <dict>
            <key>assets</key>
            <array>
                <dict>
                    <key>kind</key>
                    <string>software-package</string>
                    <key>url</key>
                    <string>http://down.weapp.com/apps/zb/002/43/12/21/58cae8840ba0628e304b1118.ipa</string>
                </dict>
                <dict>
                    <key>kind</key>
                    <string>display-image</string>
                    <key>needs-shine</key>
                    <true/>
                    <key>url</key>
                    <string>http://www.weapp.com/picture/app_ios/cn/002/43/12/21/57x57bb.png</string>
                </dict>
                <dict>
                    <key>kind</key>
                    <string>full-size-image</string>
                    <key>needs-shine</key>
                    <true/>
                    <key>url</key>
                    <string>http://www.weapp.com/picture/app_ios/cn/002/43/12/21/512x512bb.png</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.xiaoji.gamecenter</string>
                <key>bundle-version</key>
                <string>1.5.2</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>小鸡模拟器</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

我想抓住.ipa网址,为此我正在使用simplexml

$xml=simplexml_load_string($plistString)

现在我会访问它

$xmlPlist->dict->array[0]->string,

但那里有2个字符串,我如何访问网址? 现在这对我来说很困惑,我甚至以正确的方式访问了plis吗?我应该提到每一个“字典”吗?

2 个答案:

答案 0 :(得分:0)

试试这个:

echo $xml->dict->array->dict->array->dict->string[1];

答案 1 :(得分:0)

要搜索XML,您应该使用XPath。这段代码可以解决问题:

<?php
$xml = new SimpleXMLElement($plistString);
$result = $xml->xpath('//dict[./key/text()="kind" and ./string/text()="software-package"]/key[text()="url"]/following-sibling::string');
$url = (string)$result[0];

那是什么意思?第一:

dict[./key/text()="kind" and ./string/text()="software-package"]

我们比较child elements和他们的text content;我们正在寻找包含<dict><key>kind</key>的<{1}}。

然后:

<string>software-package</string>

我们选择/key[text()="url"]/following-sibling::string 元素,并查找带有“url”的子<dict>元素作为文本内容,并获取<key>元素following it

此时我们仍然有一个XML元素,因此我们使用typecasting将其转换为字符串。