検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 33 for SimpleXMLElement (0.004 sec.)
SimpleXMLElement クラス 10877
« XML エラーの対応 SimpleXMLElement::addAttribute » PHP Manual SimpleXML SimpleXMLElement クラス ... SimpleXMLElement クラス (PHP 5, PHP 7, PHP 8) はじめに XML ドキュメ ... ントの要素をあらわします。 クラス概要 class SimpleXMLElement implements Stringable , Countable , RecursiveItera ... ng $value = null , ? string $namespace = null ): ? SimpleXMLElement public asXML ( ? string $filename = null ): string ... spaceOrPrefix = null , bool $isPrefix = false ): ? SimpleXMLElement public children ( ? string $namespaceOrPrefix = nu ...
https://man.plustar.jp/php/class.simplexmlelement.html - [similar]
SimpleXML 10444
« libxml_use_internal_errors はじめに » PHP Manual XML 操作 SimpleXML SimpleXML はじめに インスト ... 定数 例 基本的な SimpleXML の使用法 XML エラーの対応 SimpleXMLElementSimpleXMLElement クラス SimpleXMLElement::addAtt ... ribute — SimpleXML 要素に属性を追加する SimpleXMLElement::addChild — XML ノードに子要素を追加する SimpleXML ... — SimpleXML 要素に基づき整形式の XML 文字列を返す SimpleXMLElement::attributes — 要素の属性を定義する SimpleXMLElemen ... t::children — 指定したノードの子ノードを見付ける SimpleXMLElement::__construct — 新しい SimpleXMLElement オブジェクト ...
https://man.plustar.jp/php/book.simplexml.html - [similar]
SimpleXMLIterator クラス 10444
« SimpleXMLElement::xpath SimpleXMLIterator::current » PHP Manual SimpleXML SimpleXMLIterator ク ... 1.3, PHP 7, PHP 8) はじめに SimpleXMLIterator は、 SimpleXMLElement オブジェクトのすべてのノードに対する再帰的な反復処 ... します。 クラス概要 class SimpleXMLIterator extends SimpleXMLElement { /* メソッド */ public current (): mixed public g ... ublic valid (): bool /* 継承したメソッド */ public SimpleXMLElement::addAttribute ( string $qualifiedName , string $va ... lue , ? string $namespace = null ): void public SimpleXMLElement::addChild ( string $qualifiedName , ? string $valu ...
https://man.plustar.jp/php/class.simplexmliterator.html - [similar]
SimpleXMLElement::asXML のエイリアス 10203
« SimpleXMLElement::registerXPathNamespace SimpleXMLElement::__toString » PHP Manual SimpleXMLElement ... ement SimpleXMLElement::asXML のエイリアス SimpleXMLElement::saveXML (PHP ... 5 >= 5.2.0, PHP 7, PHP 8) SimpleXMLElement::saveXML — SimpleXMLElement::asXML() のエイリアス ... 説明 このメソッドは次のメソッドのエイリアスです。 SimpleXMLElement::asXML() 関連キーワード: SimpleXMLElement , asXML ...
https://man.plustar.jp/php/simplexmlelement.savexml.html - [similar]
新しい SimpleXMLElement オブジェクトを作成する 9641
« SimpleXMLElement::children SimpleXMLElement::count » PHP Manual SimpleXMLElement 新しい SimpleXMLElement ... XMLElement オブジェクトを作成する SimpleXMLElement::__construct (PHP 5, PHP 7, PHP 8) SimpleXMLElemen ... t::__construct — 新しい SimpleXMLElement オブジェクトを作成する 説明 public SimpleXMLElemen ... aceOrPrefix = "" , bool $isPrefix = false ) 新しい SimpleXMLElement オブジェクトを作成します。 パラメータ data 整形式 ... 初のサンプルにある XML 文字列を参照しています。 例1 SimpleXMLElement オブジェクトの作成 <?php include 'example.php' ; $ ...
https://man.plustar.jp/php/simplexmlelement.construct.html - [similar]
XML データに Xpath クエリを実行する 9305
« SimpleXMLElement::__toString SimpleXMLIterator » PHP Manual SimpleXMLElement XML データに Xpat ... h クエリを実行する SimpleXMLElement::xpath (PHP 5, PHP 7, PHP 8) SimpleXMLElement::xpa ... — XML データに Xpath クエリを実行する 説明 public SimpleXMLElement::xpath ( string $expression ): array | null | fals ... 索します。 パラメータ expression XPath パス。 戻り値 SimpleXMLElement オブジェクトの 配列 を返します。 エラーが発生した場 ... /c> </b> <d> <c>code</c> </d> </a> XML; $xml = new SimpleXMLElement ( $string ); /* <a><b><c> を探します */ $result = ...
https://man.plustar.jp/php/simplexmlelement.xpath.html - [similar]
子要素を数える 9240
« SimpleXMLElement::__construct SimpleXMLElement::getDocNamespaces » PHP Manual SimpleXMLElement ... 子要素を数える SimpleXMLElement::count (PHP 5 >= 5.3.0, PHP 7, PHP 8) SimpleXMLEle ... ment::count — 子要素を数える 説明 public SimpleXMLElement::count (): int このメソッドは、子要素を数えます。 ... ld/> <child/> </person> </people> EOF; $elem = new SimpleXMLElement ( $xml ); foreach ( $elem as $person ) { printf ( ... got 3 children. Person 2 has got 5 children. 参考 SimpleXMLElement::children() - 指定したノードの子ノードを見付ける 関 ...
https://man.plustar.jp/php/simplexmlelement.count.html - [similar]
XML 要素の名前を取得する 9240
« SimpleXMLElement::getDocNamespaces SimpleXMLElement::getNamespaces » PHP Manual SimpleXMLElement ... nt XML 要素の名前を取得する SimpleXMLElement::getName (PHP 5 >= 5.1.3, PHP 7, PHP 8) SimpleXMLE ... nt::getName — XML 要素の名前を取得する 説明 public SimpleXMLElement::getName (): string XML 要素の名前を取得します。 パ ... パラメータはありません。 戻り値 getName メソッドは、 SimpleXMLElement オブジェクトが参照している XML タグの名前を string ... 名前の取得 <?php include 'example.php' ; $sxe = new SimpleXMLElement ( $xmlstr ); echo $sxe -> getName () . "\n" ; fore ...
https://man.plustar.jp/php/simplexmlelement.getname.html - [similar]
文字列で要素の内容を返す 9240
« SimpleXMLElement::saveXML SimpleXMLElement::xpath » PHP Manual SimpleXMLElement 文字列で要素の ... 内容を返す SimpleXMLElement::__toString (PHP 5 >= 5.3.0, PHP 7, PHP 8) SimpleX ... :__toString — 文字列で要素の内容を返す 説明 public SimpleXMLElement::__toString (): string この要素に直接入っているテキ ... す。 例 例1 文字列で内容を取得する <?php $xml = new SimpleXMLElement ( '<a>1 <b>2 </b>3</a>' ); echo $xml ; ?> 上の例の ... 出力は以下となります。 1 3 参考 SimpleXMLElement::asXML() - SimpleXML 要素に基づき整形式の XML 文字 ...
https://man.plustar.jp/php/simplexmlelement.tostring.html - [similar]
要素の属性を定義する 9096
« SimpleXMLElement::asXML SimpleXMLElement::children » PHP Manual SimpleXMLElement 要素の属性を定 ... 義する SimpleXMLElement::attributes (PHP 5, PHP 7, PHP 8) SimpleXMLElement ... ::attributes — 要素の属性を定義する 説明 public SimpleXMLElement::attributes ( ? string $namespaceOrPrefix = null , ... bool $isPrefix = false ): ? SimpleXMLElement この関数は、XMLタグの中で定義された属性とその値を取 ... 性の名前空間。 isPrefix デフォルトは false 。 戻り値 SimpleXMLElement オブジェクトを返します。 これを反復処理すれば、その ...
https://man.plustar.jp/php/simplexmlelement.attributes.html - [similar]
PREV 1 2 3 4 NEXT