XML 帮助程序代码点火器
如何在 codeigniter 中使用 xml 助手? 在 Code Igniter 用户指南中,没有示例,还有什么?为什么 ?如何 ?什么时候使用这个?是读还是写xml文件??请帮忙
How to use xml helper in codeigniter ?
In the Code Igniter user guide, there is no example and also what ? why ? how ? and when this is used? Is to read or to write an xml file?? please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CodeIgniter 帮助器仅用于转换字符串,以便它不包含通过将字符转换为实体而“保留”的字符。
&
<
和>
'
和& quot;
分别为‐
在 http://codeigniter.com/user_guide/helpers/xml_helper.html,
如果您想要生成 RSS feed,您可能会想要使用它。加载助手,并且视图在回显数据时将使用助手提供的
xml_convert
函数示例: 。
The CodeIgniter helper is only used to convert a string so that it does't contain characters that are "reserved" by converting the characters to entities.
&
<
and>
respectively'
and"
respectively‐
There are very short example at http://codeigniter.com/user_guide/helpers/xml_helper.html.
You'd want to use if it you were trying to, for example, generate an RSS feed. Your controller would load the helper and the view would use the
xml_convert
function provided by the helper when echoing the data.Example:
您可以在将项目插入到数据库时使用 xml helper:
插入的数据将是:
它将一些保留字符转换为 html 实体,以便控制未来的错误。
您也可以在展示物品时使用。
You can use xml helper while inserting items to db:
the inserted data will be:
It converted some reserved characters to html entities so controls future errors.
And also u can use while displaying the items.