Results of 1 - 10 of about 24 for nodes (0.014 sec.)
- DOMChildNode インターフェイス 10775
- « DOMCharacterData::substringData DOMChildNode::after » PHP Manual DOM DOMChildNode インターフェ
...
/* メソッド */ public after ( DOMNode | string ...$nodes ): void public before ( DOMNode | string ...$nodes ...
(): void public replaceWith ( DOMNode | string ...$nodes ): void } 目次 DOMChildNode::after — ノードの後ろに ...
る 関連キーワード: DOMChildNode , ノード , public , nodes , DOMNode , string , after , before , remove , rep ...
-
https://man.plustar.jp/php/class.domchildnode.html
- [similar]
- ノードの前にノードを追加する 10675
- « DOMChildNode::after DOMChildNode::remove » PHP Manual DOMChildNode ノードの前にノードを追加する
...
public DOMChildNode::before ( DOMNode | string ...$nodes ): void 渡された nodes をノードの前に追加します。 ...
パラメータ nodes ノードの前に追加されるノード。 戻り値 値を返しませ ...
キーワード: ノード , 追加 , DOMChildNode , before , nodes , after , remove , public , DOMNode , string ...
-
https://man.plustar.jp/php/domchildnode.before.html
- [similar]
- 最後の子ノードの後ろにノードを追加する 10675
- « DOMParentNode DOMParentNode::prepend » PHP Manual DOMParentNode 最後の子ノードの後ろにノードを
...
ublic DOMParentNode::append ( DOMNode | string ...$nodes ): void ひとつ以上の nodes を、 最後の子ノードの後 ...
ろの、子ノードのリストに追加します。 パラメータ nodes 追加するノード。 戻り値 値を返しません。 参考 DOMP ...
ード , 追加 , 最後 , 後ろ , DOMParentNode , append , nodes , prepend , public , DOMNode ...
-
https://man.plustar.jp/php/domparentnode.append.html
- [similar]
- 最初の子ノードの前にノードを追加する 10675
- « DOMParentNode::append DOMProcessingInstruction » PHP Manual DOMParentNode 最初の子ノードの前に
...
blic DOMParentNode::prepend ( DOMNode | string ...$nodes ): void ひとつ以上の nodes を、 最初の子ノードの前 ...
の、 子ノードのリストに追加します。 パラメータ nodes ノードの前に追加するノード。 戻り値 値を返しません ...
: ノード , 追加 , 最初 , DOMParentNode , prepend , nodes , append , DOMProcessingInstruction , public , DOM ...
-
https://man.plustar.jp/php/domparentnode.prepend.html
- [similar]
- ノードの後ろにノードを追加する 10458
- « DOMChildNode DOMChildNode::before » PHP Manual DOMChildNode ノードの後ろにノードを追加する DOM
...
public DOMChildNode::after ( DOMNode | string ...$nodes ): void 渡された nodes をノードの後ろに追加します。 ...
パラメータ nodes ノードの後ろに追加されるノード。 戻り値 値を返しま ...
連キーワード: ノード , 追加 , 後ろ , DOMChildNode , nodes , after , DOMNode , before , 要素 , public ...
-
https://man.plustar.jp/php/domchildnode.after.html
- [similar]
- ノードを新しいノードで置き換える 10458
- « DOMChildNode::remove DOMComment » PHP Manual DOMChildNode ノードを新しいノードで置き換える DOM
...
c DOMChildNode::replaceWith ( DOMNode | string ...$nodes ): void ノードを新しい nodes で置き換えます。 DOMC ...
Node::append() を組み合わせたものです。 パラメータ nodes 置き換えるノード。 戻り値 値を返しません。 参考 DO ...
ード: ノード , DOMChildNode , remove , replaceWith , nodes , DOMNode , 追加 , after , 削除 , before ...
-
https://man.plustar.jp/php/domchildnode.replacewith.html
- [similar]
- DOMParentNode インターフェイス 9591
- « DOMNotation DOMParentNode::append » PHP Manual DOM DOMParentNode インターフェイス DOMParentNod
...
* メソッド */ public append ( DOMNode | string ...$nodes ): void public prepend ( DOMNode | string ...$node ...
de , ノード , append , public , DOMNode , string , nodes , prepend , 追加 , DOMNotation ...
-
https://man.plustar.jp/php/class.domparentnode.html
- [similar]
- PHP の関数を XPath 関数として登録する 8840
- « DOMXPath::registerNamespace DOM 関数 » PHP Manual DOMXPath PHP の関数を XPath 関数として登録す
...
s (); // substr 関数を book の title に適用します $nodes = $xpath -> query ( '//book[php:functionString("su ...
bstr", title, 0, 3) = "PHP"]' ); echo "Found { $nodes -> length } books starting with 'PHP':\n" ; foreac ...
h ( $nodes as $node ) { $title = $node -> getElementsByTagNam ...
tions ( "has_multiple" ); function has_multiple ( $nodes ) { // author が複数ある場合に true を返します ret ...
-
https://man.plustar.jp/php/domxpath.registerphpfunctions.html
- [similar]
- Create a new WriteConcern 8723
- « MongoDB\Driver\WriteConcern::bsonSerialize MongoDB\Driver\WriteConcern::getJournal » PHP Manua
...
erations have propagated to the majority of voting nodes, including the primary, and have been written to t ...
he on-disk journal for these nodes. Prior to MongoDB 3.0, this refers to the majority ...
of replica set members (not just voting nodes). string A string value is interpereted as a tag s ...
knowledgement from the majority of the replica set nodes */ $wc = new MongoDB \ Driver \ WriteConcern ( Mon ...
-
https://man.plustar.jp/php/mongodb-driver-writeconcern.construct.html
- [similar]
- 現在のドキュメントにノードをインポートする 8406
- « DOMDocument::getElementsByTagNameNS DOMDocument::load » PHP Manual DOMDocument 現在のドキュメン
...
/root>" ); echo "The 'new document' before copying nodes into it:\n" ; echo $newdoc -> saveXML (); // ノード ...
de ); echo "\nThe 'new document' after copying the nodes into it:\n" ; echo $newdoc -> saveXML (); ?> 上の例 ...
は以下となります。 The 'new document' before copying nodes into it: <?xml version="1.0"?> <root> <someelement ...
ment> </root> The 'new document' after copying the nodes into it: <?xml version="1.0"?> <root> <someelement ...
-
https://man.plustar.jp/php/domdocument.importnode.html
- [similar]