SimpleXML的得到一个命名空间属性(Simplexml get attributes with

2019-07-04 01:26发布

我有有一个命名空间属性的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标签?

Answer 1:

您需要获得该属性时要使用的命名空间。 该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

键盘演示



文章来源: Simplexml get attributes with a namespace