PHP attributes()函数讲解

作者:php参考手册 时间:2023-06-04 09:33:02 

PHP attributes() 函数

实例

返回 XML 的 body 元素的属性和值:


<?php
$note=<<<XML
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body date="2013-01-01" type="private">Don't forget me this weekend!</body>
</note>
XML;
$xml=simplexml_load_string($note);
foreach($xml->body[0]->attributes() as $a => $b)
{
echo $a,'="',$b,""<br>";
}
?>

定义和用法

attributes()函数返回 XML 标签的属性和值。

语法


attributes( _ns,is_prefix_ );

PHP attributes()函数讲解

PHP attributes()函数讲解

标签:php,attributes(),函数
0
投稿

猜你喜欢

  • 关于Python下载大文件时哪种方式速度更快

    2021-03-15 05:46:37
  • python框架Django实战商城项目之工程搭建过程图文详解

    2022-12-16 16:25:57
  • 一个模仿oso的php论坛程序源码(之二)第1/3页

    2024-05-02 17:07:10
  • Python3 多线程(连接池)操作MySQL插入数据

    2024-01-27 14:32:57
  • Python 爬虫多线程详解及实例代码

    2021-01-25 14:05:03
  • Python之str操作方法(详解)

    2021-07-21 09:14:16
  • 一篇文章带你了解Python的进程,线程和协程

    2023-09-01 18:40:01
  • Go方法接收者值接收者与指针接收者详解

    2024-02-17 04:30:45
  • python difflib模块示例讲解

    2022-01-21 04:35:57
  • python爬虫之selenium库的安装及使用教程

    2021-04-22 20:20:46
  • python中把元组转换为namedtuple方法

    2021-12-04 22:13:04
  • python 识别登录验证码图片功能的实现代码(完整代码)

    2021-03-14 23:03:40
  • Python之基础函数案例详解

    2023-07-09 19:43:24
  • JSP JavaBean的setProperty属性

    2023-07-10 19:58:11
  • python使用rsa非对称加密过程解析

    2021-06-15 00:14:51
  • 验证sql保留字工具

    2008-05-15 12:34:00
  • Python文本处理之按行处理大文件的方法

    2023-01-24 11:11:34
  • Python tkinter中label控件动态改变值问题

    2023-09-15 19:27:18
  • Python实现Word的读写改操作

    2022-08-11 13:42:48
  • eWebEditor不支持IE,IE8,IE7,火狐,遨游的解决方法

    2011-06-06 07:57:00
  • asp之家 网络编程 m.aspxhome.com