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://www.codercto.com/courses/l/5.html
Web Data Mining
Bing Liu / Springer / 2006-12-28 / USD 59.95
Web mining aims to discover useful information and knowledge from the Web hyperlink structure, page contents, and usage data. Although Web mining uses many conventional data mining techniques, it is n......一起来看看 《Web Data Mining》 这本书的介绍吧!