検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 33 for SimpleXMLElement (0.005 sec.)
DOM ノードから SimpleXMLElement オブジェクトを取得する 9064
« SimpleXML 関数 simplexml_load_file » PHP Manual SimpleXML 関数 DOM ノードから SimpleXMLElement ... HP 7, PHP 8) simplexml_import_dom — DOM ノードから SimpleXMLElement オブジェクトを取得する 説明 simplexml_import_dom ( ... SimpleXMLElement | DOMNode $node , ? string $class_name = SimpleXML ... Element::class ): ? SimpleXMLElement この関数は、 DOM ドキュメントのノードを引数とし、 ... 指定したクラスのオブジェクトを返します。このクラスは SimpleXMLElement を継承していなければなりません。 戻り値 SimpleXMLE ...
https://man.plustar.jp/php/function.simplexml-import-dom.html - [similar]
ドキュメントで使用している名前空間を返す 9000
« SimpleXMLElement::getName SimpleXMLElement::registerXPathNamespace » PHP Manual SimpleXMLElement ... nt ドキュメントで使用している名前空間を返す SimpleXMLElement::getNamespaces (PHP 5 >= 5.1.2, PHP 7, PHP 8) Simp ... ドキュメントで使用している名前空間を返す 説明 public SimpleXMLElement::getNamespaces ( bool $recursive = false ): array ... sie Q. Public</p:person> </people> XML; $sxe = new SimpleXMLElement ( $xml ); $namespaces = $sxe -> getNamespaces ( tr ... ["p"]=> string(21) "http://example.org/ns" } 参考 SimpleXMLElement::getDocNamespaces() - ドキュメントで宣言されている ...
https://man.plustar.jp/php/simplexmlelement.getnamespaces.html - [similar]
XML ノードに子要素を追加する 8968
« SimpleXMLElement::addAttribute SimpleXMLElement::asXML » PHP Manual SimpleXMLElement XML ノード ... に子要素を追加する SimpleXMLElement::addChild (PHP 5 >= 5.1.3, PHP 7, PHP 8) SimpleXML ... ddChild — XML ノードに子要素を追加する 説明 public SimpleXMLElement::addChild ( string $qualifiedName , ? string $valu ... e = null , ? string $namespace = null ): ? SimpleXMLElement ノードに子要素を追加し、子要素の SimpleXMLElement ... hild メソッドは、 XML ノードに追加した子要素を表す SimpleXMLElement オブジェクトを返します。 失敗時に null を返します。 ...
https://man.plustar.jp/php/simplexmlelement.addchild.html - [similar]
指定したノードの子ノードを見付ける 8936
« SimpleXMLElement::attributes SimpleXMLElement::__construct » PHP Manual SimpleXMLElement 指定し ... たノードの子ノードを見付ける SimpleXMLElement::children (PHP 5, PHP 7, PHP 8) SimpleXMLElement:: ... n — 指定したノードの子ノードを見付ける 説明 public SimpleXMLElement::children ( ? string $namespaceOrPrefix = null , b ... ool $isPrefix = false ): ? SimpleXMLElement このメソッドは、指定した要素の子を見つけます。 結果 ... います。 戻り値 ノードが子を持つかどうかにかかわらず SimpleXMLElement 要素を返します。 ノードが属性である場合は、 null を ...
https://man.plustar.jp/php/simplexmlelement.children.html - [similar]
SimpleXML 要素に基づき整形式の XML 文字列を返す 8759
« SimpleXMLElement::addChild SimpleXMLElement::attributes » PHP Manual SimpleXMLElement SimpleXM ... L 要素に基づき整形式の XML 文字列を返す SimpleXMLElement::asXML (PHP 5, PHP 7, PHP 8) SimpleXMLElement::asX ... 要素に基づき整形式の XML 文字列を返す 説明 public SimpleXMLElement::asXML ( ? string $filename = null ): string | boo ... /c> </b> <d> <c>code</c> </d> </a> XML; $xml = new SimpleXMLElement ( $string ); echo $xml -> asXML (); ?> 上の例の出力 ... d> </a> asXML は Xpath の結果にも適用できます: 例2 SimpleXMLElement::xpath() の結果に asXML() を使用する <?php // 上の ...
https://man.plustar.jp/php/simplexmlelement.asxml.html - [similar]
ドキュメントで宣言されている名前空間を返す 8759
« SimpleXMLElement::count SimpleXMLElement::getName » PHP Manual SimpleXMLElement ドキュメントで ... 宣言されている名前空間を返す SimpleXMLElement::getDocNamespaces (PHP 5 >= 5.1.2, PHP 7, PHP 8) S ... キュメントで宣言されている名前空間を返す 説明 public SimpleXMLElement::getDocNamespaces ( bool $recursive = false , bool ... sie Q. Public</p:person> </people> XML; $sxe = new SimpleXMLElement ( $xml ); $namespaces = $sxe -> getDocNamespaces ( ... ie Q. Public </p:person> </people> XML; $sxe = new SimpleXMLElement ( $xml ); $namespaces = $sxe -> getDocNamespaces ( ...
https://man.plustar.jp/php/simplexmlelement.getdocnamespaces.html - [similar]
次の XPath クエリ用の prefix/ns コンテキストを作成する 8326
« SimpleXMLElement::getNamespaces SimpleXMLElement::saveXML » PHP Manual SimpleXMLElement 次の X ... Path クエリ用の prefix/ns コンテキストを作成する SimpleXMLElement::registerXPathNamespace (PHP 5 >= 5.1.0, PHP 7, PH ... P 8) SimpleXMLElement::registerXPathNamespace — 次の XPath クエリ用の pr ... efix/ns コンテキストを作成する 説明 public SimpleXMLElement::registerXPathNamespace ( string $prefix , string ... m, odio.</para> </chapter> </book> EOD; $sxe = new SimpleXMLElement ( $xml ); $sxe -> registerXPathNamespace ( 'c' , ' ...
https://man.plustar.jp/php/simplexmlelement.registerxpathnamespace.html - [similar]
SimpleXML 要素に属性を追加する 8230
« SimpleXMLElement SimpleXMLElement::addChild » PHP Manual SimpleXMLElement SimpleXML 要素に属性 ... を追加する SimpleXMLElement::addAttribute (PHP 5 >= 5.1.3, PHP 7, PHP 8) Simpl ... ibute — SimpleXML 要素に属性を追加する 説明 public SimpleXMLElement::addAttribute ( string $qualifiedName , string $va ... 要素の追加 <?php include 'example.php' ; $sxe = new SimpleXMLElement ( $xmlstr ); $sxe -> addAttribute ( 'type' , 'docu ... ng type="stars">5</rating> </movie> </movies> 参考 SimpleXMLElement::addChild() - XML ノードに子要素を追加する 基本的な ...
https://man.plustar.jp/php/simplexmlelement.addattribute.html - [similar]
SimpleXMLElement オブジェクトから DOMElement オブジェクトを取得する 7700
« DOM 関数 libxml » PHP Manual DOM 関数 SimpleXMLElement オブジェクトから DOMElement オブジェクト ... lexml (PHP 5, PHP 7, PHP 8) dom_import_simplexml — SimpleXMLElement オブジェクトから DOMElement オブジェクトを取得する ... Element ノードとして使用可能です。 パラメータ node SimpleXMLElement ノード。 戻り値 追加された DOMElement ノードを返し ... ); ?> 参考 simplexml_import_dom() - DOM ノードから SimpleXMLElement オブジェクトを取得する 関連キーワード: オブジェクト ... , DOMElement , SimpleXMLElement , 取得 , ノード , import , simplexml , 関数 , node ...
https://man.plustar.jp/php/function.dom-import-simplexml.html - [similar]
XML 文字列をオブジェクトに代入する 7700
« simplexml_load_file WDDX » PHP Manual SimpleXML 関数 XML 文字列をオブジェクトに代入する simple ... oad_string ( string $data , ? string $class_name = SimpleXMLElement::class , int $options = 0 , string $namespace_or_p ... refix = "" , bool $is_prefix = false ): SimpleXMLElement | false 整形式 XML 文字列をオブジェクトとして返しま ... スのオブジェクトを返すようにします。 このクラスは、 SimpleXMLElement クラスを継承していなければなりません。 options Lib ... ある場合に false 。デフォルトは false です。 戻り値 SimpleXMLElement クラスのオブジェクトを返します。 XML ドキュメント内 ...
https://man.plustar.jp/php/function.simplexml-load-string.html - [similar]
PREV 1 2 3 4 NEXT