Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$ myXMLElementという変数があり、その変数をダンプすると、次のようになります。
SimpleXMLElement Object ( [@attributes] => Array ( [id] => 7 ) [0] => Kirkpatrick )
PHPでKirkpatrickの価値をつかむにはどうすればよいですか
やってみました:
(string) $var[0]
?通常、これは文字列キャストで行い、SimpleXMLElementsをXMLnodeValueに変換します。
これは値を取得する必要があります:
echo $myXMLElement->{'0'};