gpt4 book ai didi

php - Simplexml 使用命名空间获取属性

转载 作者:行者123 更新时间:2023-12-04 05:22:57 26 4
gpt4 key购买 nike

我有一个具有命名空间属性的 XML 文档。 XML 看起来像:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sunil.tweet"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="16" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.sunil.tweet.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

我如何提取 android:name来自 activity 的属性标签?

最佳答案

获取属性时需要使用命名空间。 android命名空间定义为:

http://schemas.android.com/apk/res/android



所以你需要把它传递给 attributes() 方法,像这样:
$xml = simplexml_load_string($xmlStr);

echo (string) $xml->application->activity->attributes('http://schemas.android.com/apk/res/android')->name;

输出

com.sunil.tweet.MainActivity



Codepad Demo

关于php - Simplexml 使用命名空间获取属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13511217/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com