免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2068 | 回复: 0
打印 上一主题 下一主题

php读写xml一例 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-04 13:28 |只看该作者 |倒序浏览
library.xml:


  super
   admin
    change
    program

  
   
     Apache 2
     Peter Wainwright
     Wrox
     1
   
   
     Advanced PHP Programming
     George Schlossnagle
     Developer Library
     1
     3
   
   
     Visual FoxPro 6 - Programmers Guide
     Eric Stroo
     Microsoft Press
     2
   
   
     Mastering Java 2
     John Zukowski
     Sybex
     4
   

/**********************************************/
readlibrary.php:
load( 'library.xml' );
  $groups = array();
  $XMLGroups = $xml->getElementsByTagName('groups')->item(0);
  foreach($XMLGroups->getElementsByTagName('group') as $groupNode) {
    /*注意我们是如何得到属性的*/
    $gid = $groupNode->getAttribute('gid');
    $groups[$gid] = $groupNode->firstChild->nodeValue;
  }
?>


XML Library


getElementsBytagName('user') as $user):
   $name = $user->getElementsByTagName('name')->item(0)->firstChild->nodeValue;
   $author = $user->getElementsByTagName('author')->item(0)->firstChild->nodeValue;
   $userCategories = $user->getElementsByTagName('group');
   $catList = '';
   foreach($userCategories as $category) {
     $catList .= $groups[$category->firstChild->nodeValue] . ', ';
   }
   $catList = substr($catList, 0, -2); ?>
  
  
Author::  
group: :  
  
-->
  

/************************************/
writelibrary.php:
formatOutput = true;
$r = $doc->createElement( "root" );
$doc->appendChild( $r );
setGroup();
setUser();
echo $doc->saveXML();
$doc->save("book1.xml");
function setGroup()
{
global $doc, $r;

  $groups = array();
  $groups [] = array(
  'id' => '1',
  'name' => 'Jack',
  );
  $groups [] = array(
  'id' => '2',
  'name' => 'Herrington',
  );
  $groups [] = array(
  'id' => '3',
  'name' => 'Hello',
  );
  
$b = $doc->createElement( "groups" );
   
  foreach( $groups as $group )
  {
   $grp = $doc->createElement( "group" );
   $grp->appendChild( $doc->createTextNode( $group['name'] ) );
   
   // create attribute node
  $id = $doc->createAttribute("gid");
  $grp->appendChild($id);
  $idValue = $doc->createTextNode( $group['id'] );
  $id->appendChild($idValue);
   $b->appendChild( $grp );
  }
$r->appendChild( $b );  
  
}
function setUser()
{
global $doc, $r;

$users [] = array(
  'title' => 'PHP Hacks',
  'author' => 'Jack Herrington',
  'publisher' => "O'Reilly"
  );
  $users [] = array(
  'title' => 'Podcasting Hacks',
  'author' => 'Jack Herrington',
  'publisher' => "O'Reilly"
  );
  
  $u = $doc->createElement( "users" );
  $doc->appendChild( $u );
  
  foreach( $users as $user )
  {
   $b = $doc->createElement( "user" );
   
   $author = $doc->createElement( "author" );
   $author->appendChild( $doc->createTextNode( $user['author'] ) );
   $b->appendChild( $author );
   
   $title = $doc->createElement( "title" );
   $title->appendChild( $doc->createTextNode( $user['title'] ) );
   $b->appendChild( $title );
   
   $publisher = $doc->createElement( "publisher" );
   $publisher->appendChild( $doc->createTextNode( $user['publisher'] ) );
   $b->appendChild( $publisher );
   
   $u->appendChild( $b );
  }
  $r->appendChild( $u );
}  
?>  

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/28371/showart_1105485.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP