PHP xml_parser_set_option() 函数
PHP 教程
· 2019-01-30 19:42:06
定义和用法
xml_parser_set_option() 函数为 XML 解析设置选项。
如果成功,该函数则返回 TRUE。如果失败,则返回 FALSE。
语法
xml_parser_set_option(parser,option,value)
| 参数 | 描述 |
|---|---|
| parser | 必需。规定要使用的 XML 解析器。 |
| option | 需。规定要设置的选项。可能的值:
|
| value | 必要。规定选项的新值。 |
实例
<?php $xmlparser = xml_parser_create(); xml_parser_set_option($xmlparser, XML_OPTION_SKIP_WHITE, 1); xml_parser_free($xmlparser); ?>
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
The Hard Thing About Hard Things
Ben Horowitz / HarperBusiness / 2014-3-4 / USD 29.99
Ben Horowitz, cofounder of Andreessen Horowitz and one of Silicon Valley's most respected and experienced entrepreneurs, offers essential advice on building and running a startup—practical wisdom for ......一起来看看 《The Hard Thing About Hard Things》 这本书的介绍吧!