这个的东西如何封装

WBOY
Release: 2016-06-13 12:54:51
Original
950 people have browsed it

这个的东西怎么封装?

<br />
  $a=$_XML['aa'];<br />
  $b=$_XML['bb'];<br />
  $c=$_XML['cc'];<br />
  $d=$_XML['dd'];<br />
  ....<br />
  //还有N多<br />
Copy after login


我现在的疑问:
这些都是获取XML里面的数据,很多地方都要用,
1.如何封装成函数?
2.封装后,如何调用?


------解决方案--------------------
引用:
引用:无需封装,直接使用 $_XML[key]

- -~!版主大大,因为这个东西太多了
,又不想每次都复制和粘贴这一大坨,
所以,才来问下,
怎么封装。。。。

不是说了吗?无需封装
既然你有
 $a=$_XML['aa'];
 $b=$_XML['bb'];
 $c=$_XML['cc'];
 $d=$_XML['dd'];
那就表示变量与$_XML的键有唯一关系,那就直接使用 $_XML['aa'] 之类就是了
何必要又赋值给变量?
Related labels:
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