


编程之家提供一个功能齐全的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() // According to Attribute name and value get the node,
{ // Parameters: attribute name, attribute value 1, attribute value 2, attribute value 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) // Get the node labeled $tag under the $node node
{
for($i=0;$i
{
if($node->children[$i]->tag==$tag)
return $node->children[$i];
}
return NULL;
}
public function getChildsByTag($node,$tag) // Get the node with the tag $tag under the $node node and return the node list array
{
$rs = array();
for($i=0;$i
if($node->children[$i]->tag= =$tag)
array_push($rs,$node->children[$i]);
return $rs;
}
public function addRoot($tag) // Add root node
{
$this->tree->children = array();
$this->root = $this->addChild($this->tree,$ tag);
return $this->root;
}
public function addChild($node,$tag) // Add a node with the tag $tag under the $node node, and Return the added node
{
$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) // Delete $node node
{
$p = $node->p;
array_splice($p->children,$node-> ;index,1);
for($i=0;$i
$p->children[$i]->index = $i;
}
public function move($dstNode,$srcNode) // Move srcNode below $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() // Return xml format string
{
$s = "" ;
for($i=0;$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;$i
{
$anode = $node->children[$i];
if(isset($anode->props) && isset($anode->

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
