コードをコピー コードは次のとおりです。
// DOM を使用して XML を読み取ります
$doc = new DOMDocument();
$doc->load('test.xml');
$books = $doc->getElementsByTagName("book");
foreach( $books as $book ){
$authors = $book->getElementsByTagName("author");
$author = $authors->item(0)->nodeValue; // ノードの値を設定または返すことができます。ノードのタイプに。
$publisher = $book->getElementsByTagName("publisher");
$publisher = $publishers->item(0)->nodeValue;
$titles = $book->getElementsByTagName ( ”title” );
$titles->item(0)->nodeValue;
echo ”タイトル: $title
著者: $author
Publisher
コードをコピー コードは次のとおりです:
// SAX パーサーで XML を読み取ります
$ g_books = array();
$g_elem = null;
function startElement( $parser, $name, $attrs ){
global $g_books, $g_elem>if ( $name == ' BOOK' ) $g_books []= array();
$g_elem = $name;
function endElement( $parser, $name ){
global $g_elem; g_elem = null;
}
関数 textData( $parser, $text ){
global $g_books, $g_elem;
if ( $g_elem == '作者' || $g_elem == '出版社 ' || $g_elem == 'TITLE' ){
$g_books[ count( $g_books ) - 1 ][ $g_elem ] = $text;
}
}
$parser = xml_parser_create ( );
xml_set_element_handler( $parser, ”startElement”, ”endElement” );
xml_set_character_data_handler( $parser, ”textData” ); ) ;
while( $data = fread( $f, 4096 ) ){
xml_parse( $parser, $data );
xml_parser_free( $parser ); g_books as $book ){
echo $book['TITLE']." - ".$book['AUTHOR']." - ";
echo $book['PUBLISHER']."n";
}
/*
スクリプトは最初に、メモリ内のすべての書籍と書籍情報を保持する g_books 配列を設定します。また、g_elem 変数はスクリプトが含まれるタグの名前を保持します。現在処理中です。次に、スクリプトはコールバック関数を定義します。この例では、コールバック関数は startElement、endElement、および textData です。マークを開くときと閉じるときは、それぞれ startElement 関数と endElement 関数を呼び出します。開始タグと終了タグの間のテキストで textData を呼び出します。
この例では、startElement タグは book 配列内の新しい要素を開始する book タグを探します。次に、textData 関数は現在の要素を調べて、それが発行者、タイトル、または著者タグであるかどうかを確認します。そうである場合、関数は現在のテキストを現在のブックに挿入します。
解析を続行できるようにするために、スクリプトは xml_parser_create 関数を使用してパーサーを作成します。次に、コールバック ハンドルを設定します。その後、スクリプトはファイルを読み取り、ファイルのチャンクをパーサーに送信します。ファイルが読み取られた後、xml_parser_free 関数によってパーサーが削除されます。スクリプトの最後では、g_books 配列の内容が出力されます。
*/
$xml = ””; $f = fopen( 'test.xml', 'r' ); while( $data = fread( $f, 4096 ) ) { $xml .= $data; fclose( $f );
preg_match_all( ”/preg_match_all( ”/
preg_match_all( ”/
$books = array();
$books [] = array(
'title' => 'PHP Hacks',
'author' => 'ジャック・ヘリントン',
'publisher' => ”O'ライリー」
);
$books [] = array(
'title' => 'ポッドキャスティングハック',
'author' => 'ジャック・ヘリントン',
'publisher' => ”O'ライリー」
);
$doc = 新しい DOMDocument();
$doc->formatOutput = true;
$r = $doc->createElement( ”books” );
$doc->appendChild( $r );
foreach( $books as $book ){
$b = $doc->createElement( ”book” );
$author = $doc->createElement( ”author” );
$author->appendChild( $doc->createTextNode( $book['author'] ) );
$b->appendChild( $author );
$title = $doc->createElement( ”title” );
$title->appendChild( $doc->createTextNode( $book['title'] ) );
$b->appendChild( $title );
$publisher = $doc->createElement( ”publisher” );
$publisher->appendChild( $doc->createTextNode( $book['publisher'] ) );
$b->appendChild( $publisher );
$r->appendChild( $b );
}
//echo $doc->saveXML();
复制代码代码如下:
PHP 编写xml
$books = array();
$books [] = array(
'title' => 'PHP Hacks',
'author' => 'ジャック・ヘリントン',
'publisher' => ”O'ライリー」
);
$books [] = array(
'title' => 'ポッドキャスティングハック',
'author' => 'ジャック・ヘリントン',
'publisher' => ”O'ライリー」
);
?>
foreach( $books as $book )
{
?>
复制代 代码如下:
<書籍>
<本>
<著者>ジャック・ヘリントン著者>