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.
次のように、要素に Moo を設定するにはどうすればよいですか。
$xmlEl = new SimpleXMLElement('<Get>Moo</Get>');
代わりに次のように要素を初期化した場合:
$xmlEl = new SimpleXMLElement('<Get></Get>');
それはばかげて単純なことです。しかし、私はそれが addAttribute() でも addChild() でもないことを知っています。
前もって感謝します
ルート要素の設定値:
<?php $xmlEl = new SimpleXMLElement('<Get></Get>'); $xmlEl[0] = 'Moo'; ?>