2

名前空間を持つ属性を持つ 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

4

1 に答える 1

3

属性を取得するときは、名前空間を使用する必要があります。名前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

コードパッドのデモ

于 2012-11-22T11:42:33.973 に答える