Detailed explanation on the use of common tools in php

黄舟
Release: 2023-03-15 13:24:01
Original
1261 people have browsed it

Introducing a PHP encapsulation of some commonly used tool classes, converting xml into arrays, converting arrays into xml, sending XML data in PHP post requests, sending Json object data in PHP post requests, sending arrays in PHP post requests, and receiving xml data and convert it into an array, receive json data and convert it into an array, and determine the current server system.


First download some common tools that we need to use in this course. Class: http://www.php.cn/xiazai/leiku/421

After the download is complete, find the php class file we need, unzip it to our local directory, and create a new php file!

After completion, we need to call this class in the new php file and instantiate the class:

<?php
include_once "gongju.php";//引入类文件
$obj = new Utils; //实例化

$data= array("网站:"=>"php中文网","网址"=>"www.php.cn");
echo $obj->data_to_xml($data)."<br>";//将数组转换为xml


$xml = <<<XML
<?xml version=&#39;1.0&#39;?> 
<document>
 <title>Forty What?</title>
 <from>Joe</from>
 <to>Jane</to>
 <body>
 I know that&#39;s the answer -- but what&#39;s the question?
 </body>
</document>
XML;
print_r($obj->xml_to_array($xml));//将xml转换为数组

?>
Copy after login


Run The result is as shown below:

Detailed explanation on the use of common tools in php

Note:

Here we use some tools, other friends can try it themselves~

The above is the detailed content of Detailed explanation on the use of common tools in php. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!