php +没有扩展名的 xml
全部!
如果我没记错的话,php 中所有与 xml 相关的东西都在扩展中。也许有一种方法可以在没有任何扩展的情况下使用 xml?
先感谢您!
all!
If my memory serves me right, all xml-related stuff in php is in extensions. Maybe there's a way to work with xml withou any extensions?
thank you in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XML 文件是普通的文本文件。您可以使用任何文件或文本相关的功能。但正如其他人已经说过的:你将再次重新发明轮子。您可以在网上搜索无需这些扩展即可完成此操作的其他类。也许你可以找到一些。 PHPclasses.org 可能有您正在寻找的东西。但正如其他人所说,你的问题不够具体。
XML files are normal text files. You can use any file or text related function. But as the others already said: You will be reinventing the wheel again. You can search on the net for other classes that would do it without those extensions. Maybe you can find some. PHPclasses.org has probably something you are searching for. But as the others said as well, your question is not specific enough.
你能说得更具体一些吗?据我所知,使用 XML 所需的只是 libxml (libxml2)。
Can you be more specific? As far as I know all you need for working with XML is libxml (libxml2).