찾다
php教程php手册PHP操作XML功能齐全的xml操作类

PHP操作XML功能齐全的xml操作类

Jun 13, 2016 am 10:39 AM
classopphpxml공급작동하다~의친절한프로그램 작성

编程之家提供一个功能齐全的xml操作类



/* xml操作类 */
class operXml
{
    var $parser;

    public function __construct()
    {
        $this->parser = xml_parser_create();
        xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, 0);
        xml_parser_set_option($this->parser, XML_OPTION_SKIP_WHITE, 1);

        xml_set_object($this->parser, $this);
        xml_set_element_handler($this->parser, "tag_open", "tag_close");
        xml_set_character_data_handler($this->parser, "cdata");
    }

    public function parse($xmlStr="",$endtag=true)
    {
     $this->endtag = $endtag;
     $this->xmlStr = $xmlStr;
     $this->tree = new stdClass;
     $this->tree->tag = "root";
     $this->tree->props = new stdClass;
     $this->tree->children = array();
     $this->tree->p = NULL;
     $this->tree->level = -1;
     $this->deep = 0;
     $this->pList = array($this->tree);
     xml_parse($this->parser, $this->xmlStr);
    if(count($this->tree->children)>0)
        $this->root = $this->tree->children[0];
    else
       $this->root = NULL;
    return $this;
   }

   public function tag_open($parser, $tag, $attributes)
   {
  $o = new stdClass;
  $o->p = $this->pList[$this->deep];
  $o->index = count($o->p->children);
  $o->level = $o->p->level 1;
  $o->tag = $tag;
  $o->props = new stdClass;
  while(list($key,$value)=each($attributes))
  $o->props->{$key} = $value;
  $o->value = "";
  $o->children = array();
  array_push($o->p->children,$o);
  $this->deep ;
  $this->pList[$this->deep] = $o;
    }

    public function cdata($parser, $cdata)
    {
        $this->pList[$this->deep]->value = $cdata;
    }

    public function tag_close($parser, $tag)
    {
  $this->deep--;
    }
 
 public function getNodeByProp() // 根据属性名称和值取得节点,
 {       // 参数:属性名称,属性值1,属性值2,属性值3,...
  $args = func_get_args();
  $node = $this->tree;
  for($i=1;$i  {
   $node = $this->_getNodeByProp($node,$args[0],$args[$i]);
   if($node==NULL) break;
  }
  return $node;
 }
 
 public function getChildByTag($node,$tag)  // 取得$node节点下标签为$tag的节点
 {
  for($i=0;$ichildren);$i )
  {
   if($node->children[$i]->tag==$tag)
    return $node->children[$i];
  }
  return NULL;
 }
 
 public function getChildsByTag($node,$tag) // 取得$node节点下标签为$tag的节点,返回节点列表数组
 {
  $rs = array();
  for($i=0;$ichildren);$i )
   if($node->children[$i]->tag==$tag)
    array_push($rs,$node->children[$i]);
  return $rs;
 }
 
 public function addRoot($tag)   // 添加根节点
 {
  $this->tree->children = array();
  $this->root = $this->addChild($this->tree,$tag);
  return $this->root;
 }
 
 public function addChild($node,$tag)  // 在$node节点下添加标签为$tag的节点,并返回添加的节点
 {
  $o = new stdClass;
  $o->p = $node;
  $o->level = $node->level 1;
  $o->index = count($node->children);
  $o->tag = $tag;
  $o->props = new stdClass;
  $o->value = "";
  $o->children = array();
  array_push($node->children,$o);
  return $o;
 }
 
 public function delete($node)  // 删除$node节点
 {
  $p = $node->p;
  array_splice($p->children,$node->index,1);
  for($i=0;$ichildren);$i )
   $p->children[$i]->index = $i;
 }
 
 public function move($dstNode,$srcNode) // 将srcNode移动到$dstNode下面
 {
  $this->delete($srcNode);
  $srcNode->p = $dstNode;
  $srcNode->level = $dstNode->level 1;
  $srcNode->index = count($dstNode->children);
  array_push($dstNode->children,$srcNode);
 }
 
 public function __toString()  // 返回xml格式串
 {
  $s = "";
  for($i=0;$itree->children);$i )
   $s .= $this->traversalNodeToXml($this->tree->children[$i],$this->endtag);
  return $s;
 }

 public function save($xmlFile)  // 保存成xml格式文件
 {
  $content = $this->__toString();
  
  $fp = @fopen($xmlFile,"w") or die("创建文件失败:".$xmlFile);
  @fwrite($fp,$content);
  @fclose($fp);
  @chmod($xmlFile,0777);
 }
 
 private function traversalNodeToXml($treeNode,$endtag)
 {
  $space = "";
  $space = str_pad($s,$treeNode->level*2," ",STR_PAD_LEFT);
  $s = $space."tag;
  while(list($key,$value)=each($treeNode->props))
   $s .= " $key="$value"";
  $childCount = count($treeNode->children);
  if($childCount==0)
  {
   if($treeNode->value!="" || $endtag)
    $s .= ">".$treeNode->value."".$treeNode->tag."> ";
   else
    $s .= "/> ";
   return $s;
  }
  
  $s .= "> ";
  for($i=0;$i   $s .= $this->traversalNodeToXml($treeNode->children[$i],$endtag);
  $s .= $space."".$treeNode->tag."> ";
  return $s;
 }
 
 private function _getNodeByProp($node,$propName,$propValue)
 {
  for($i=0;$ichildren);$i )
  {
   $anode = $node->children[$i];
   if(isset($anode->props) && isset($anode->

성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

Video Face Swap

Video Face Swap

완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

뜨거운 도구

PhpStorm 맥 버전

PhpStorm 맥 버전

최신(2018.2.1) 전문 PHP 통합 개발 도구

맨티스BT

맨티스BT

Mantis는 제품 결함 추적을 돕기 위해 설계된 배포하기 쉬운 웹 기반 결함 추적 도구입니다. PHP, MySQL 및 웹 서버가 필요합니다. 데모 및 호스팅 서비스를 확인해 보세요.

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

MinGW - Windows용 미니멀리스트 GNU

MinGW - Windows용 미니멀리스트 GNU

이 프로젝트는 osdn.net/projects/mingw로 마이그레이션되는 중입니다. 계속해서 그곳에서 우리를 팔로우할 수 있습니다. MinGW: GCC(GNU Compiler Collection)의 기본 Windows 포트로, 기본 Windows 애플리케이션을 구축하기 위한 무료 배포 가능 가져오기 라이브러리 및 헤더 파일로 C99 기능을 지원하는 MSVC 런타임에 대한 확장이 포함되어 있습니다. 모든 MinGW 소프트웨어는 64비트 Windows 플랫폼에서 실행될 수 있습니다.

WebStorm Mac 버전

WebStorm Mac 버전

유용한 JavaScript 개발 도구