好用的函数

//pathinfo() 函数以数组的形式返回文件路径的信息。
<?php
print_r(pathinfo("/testweb/test.txt"));
?>
/***
Array
(
[dirname] => /testweb
[basename] => test.txt
[extension] => txt
)
**/

//simplexml_load_file() 函数把 XML 文档载入对象中
<?xml version="1.0" encoding="ISO-8859-1"?>
<note>
<to>George</to>
<from>John</from>
<heading>Reminder</heading>
<body>Don't forget the meeting!</body>
</note>

$xml = simplexml_load_file('test.xml');
var_dump($xml);

//输出
object(SimpleXMLElement)#1 (4)
{
["to"]=> string(4) "George"
["from"]=> string(4) "John"
["heading"]=> string(8) "Reminder"
["body"]=> string(29) "Don't forget the meeting!"
}


//simplexml_import_dom() 函数把 DOM 节点转换为 SimpleXMLElement 对象。
<?php
$dom = new domDocument;
$dom->loadXML('<note><from>John</from></note>');

$xml = simplexml_import_dom($dom);

echo $xml->from;
?>


你可能感兴趣的:(好用的函数)