用户
 找回密码
 入住 CI 中国社区
搜索
查看: 6817|回复: 1
收起左侧

翻译后的xml辅助函数

[复制链接]
发表于 2007-12-26 16:46:35 | 显示全部楼层 |阅读模式
XML HelperThe XML Helper file contains functions that assist in working with XML data.
xml辅助函数可以帮助你操作xml数据
Loading this HelperThis helper is loaded using the following code:
你需要用下面的方法加载xml辅助函数
$this->load->helper('xml');
The following functions are available:
然后你可以使用下面的函数
xml_convert('string')Takes a string as input and converts the following reserved XML characters to entities:
给这个函数一个字符串参数,转成实体数据的时候它会保留一些xml的特殊字符
如下:
Ampersands: &      符号名称:=and
Less then and greater than characters: < >       小于号和大于号
Single and double quotes: '  "     单引号和双引号
Dashes: -     短横线
This function ignores ampersands if they are part of existing character entities. Example:
如果部分存在这些特殊符号,此函数则会忽略掉这些符号。比如:
$string = xml_convert($string);

评分

参与人数 1威望 +5 收起 理由
Hex + 5 精品文章

查看全部评分

发表于 2007-12-26 17:00:40 | 显示全部楼层
强帖留名。。。。。
感谢翻译!

本版积分规则