Results of 1 - 10 of about 24 for books (0.010 sec.)
- id に対応する要素を検索する 12893
- « DOMDocument::createTextNode DOMDocument::getElementsByTagName » PHP Manual DOMDocument id に対
...
。 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE books [ <!ELEMENT books (book+)> <!ELEMENT book (title, ...
b (#PCDATA)> <!ELEMENT author (#PCDATA)> <!ATTLIST books xmlns CDATA #IMPLIED> <!ATTLIST books xmlns:xhtml ...
xml-stylesheet type="text/xsl" href="style.xsl"?> <books xmlns="http://books.php/" xmlns:xhtml="http://www. ...
="jon.doe@advanced.php">Jon Doe</author> </book> </books> <?php $doc = new DomDocument ; // ID を参照する前 ...
-
https://man.plustar.jp/php/domdocument.getelementbyid.html
- [similar]
- PHP の関数を XPath 関数として登録する 12893
- « DOMXPath::registerNamespace DOM 関数 » PHP Manual DOMXPath PHP の関数を XPath 関数として登録す
...
1 book.xml <?xml version="1.0" encoding="UTF-8"?> <books> <book> <title>PHP Basics</title> <author>Jim Smit ...
asics</title> <author>Joe Black</author> </book> </books> 例2 DOMXPath::registerPHPFunctions() と php:funct ...
, 3) = "PHP"]' ); echo "Found { $nodes -> length } books starting with 'PHP':\n" ; foreach ( $nodes as $nod ...
例の出力は、 たとえば以下のようになります。 Found 2 books starting with 'PHP': PHP Basics by Jim Smith PHP S ...
-
https://man.plustar.jp/php/domxpath.registerphpfunctions.html
- [similar]
- XML 名前空間の使用 10458
- « 単純な XML ドキュメントの作成 オブジェクト指向 API の使用 » PHP Manual 例 XML 名前空間の使用 X
...
要素 xmlwriter_start_element_ns ( $xw , 'prefix' , 'books' , 'uri' ); xmlwriter_start_attribute ( $xw , 'isb ...
す。 <?xml version="1.0" encoding="UTF-8"?> <prefix:books isbn="" prefix:isbn="" xmlns:prefix="uri">book1</p ...
refix:books> 関連キーワード: 使用 , books , ドキュメント , 作成 ...
-
https://man.plustar.jp/php/example.xmlwriter-namespace.html
- [similar]
- 指定したローカルタグ名に対応するすべての要素を検索する 9958
- « DOMDocument::getElementById DOMDocument::getElementsByTagNameNS » PHP Manual DOMDocument 指定し
...
= <<< XML <?xml version="1.0" encoding="utf-8"?> <books> <book>Patterns of Enterprise Application Architec ...
e Software Design</book> <book>Clean Code</book> </books> XML; $dom = new DOMDocument ; $dom -> loadXML ( $ ...
xml ); $books = $dom -> getElementsByTagName ( 'book' ); foreach ...
( $books as $book ) { echo $book -> nodeValue , PHP_EOL ; } ...
-
https://man.plustar.jp/php/domdocument.getelementsbytagname.html
- [similar]
- 例 9257
- « 定義済み定数 DOMAttr » PHP Manual DOM 例 例 このリファレンスの多くの例で、XMLファイルが必要です
...
id="listing"> <title>My lists</title> <chapter id="books"> <title>My books</title> <para> <informaltable> < ...
entry> </row> <!-- TODO: I have a lot of remaining books to add.. --> </tbody> </tgroup> </informaltable> < ...
-
https://man.plustar.jp/php/dom.examples.html
- [similar]
- 最初の要素に巻き戻す 8440
- « SimpleXMLIterator::next SimpleXMLIterator::valid » PHP Manual SimpleXMLIterator 最初の要素に巻
...
戻す <?php $xmlIterator = new SimpleXMLIterator ( '<books><book>PHP Basics</book><book>XML Basics</book></bo ...
-
https://man.plustar.jp/php/simplexmliterator.rewind.html
- [similar]
- 現在のキーを返す 8340
- « SimpleXMLIterator::hasChildren SimpleXMLIterator::next » PHP Manual SimpleXMLIterator 現在のキ
...
取得 <?php $xmlIterator = new SimpleXMLIterator ( '<books><book>PHP basics</book><book>XML basics</book></bo ...
-
https://man.plustar.jp/php/simplexmliterator.key.html
- [similar]
- 次の要素に移動する 8340
- « SimpleXMLIterator::key SimpleXMLIterator::rewind » PHP Manual SimpleXMLIterator 次の要素に移動
...
移動 <?php $xmlIterator = new SimpleXMLIterator ( '<books><book>PHP Basics</book><book>XML basics</book></bo ...
-
https://man.plustar.jp/php/simplexmliterator.next.html
- [similar]
- 現在の要素が有効かどうかを調べる 8140
- « SimpleXMLIterator::rewind SimpleXML 関数 » PHP Manual SimpleXMLIterator 現在の要素が有効かどう
...
べる <?php $xmlIterator = new SimpleXMLIterator ( '<books><book>SQL Basics</book></books>' ); $xmlIterator - ...
-
https://man.plustar.jp/php/simplexmliterator.valid.html
- [similar]
- 現在の SimpleXML エントリを返す 8039
- « SimpleXMLIterator SimpleXMLIterator::getChildren » PHP Manual SimpleXMLIterator 現在の SimpleX
...
返す <?php $xmlIterator = new SimpleXMLIterator ( '<books><book>PHP basics</book><book>XML basics</book></bo ...
-
https://man.plustar.jp/php/simplexmliterator.current.html
- [similar]