Heim  >  Artikel  >  Backend-Entwicklung  >  关于php dom能不可不用DOMDocument->load 直接读取写在当前php的xml

关于php dom能不可不用DOMDocument->load 直接读取写在当前php的xml

WBOY
WBOYOriginal
2016-06-13 12:59:091037Durchsuche

关于php dom能不能不用DOMDocument->load 直接读取写在当前php的xml
请问大家php dom能不能不用DOMDocument->load 读取在其他位置的文件,而直接读取以string写在当前php文件里的xml, 还有 有没有方法直接在网页打印出DOMDocument中的xml内容  而不用DOMDocument->save 保存 到另一个文件当中 。 没有找到方法,求大家能告诉我一下。谢谢
------解决方案--------------------
手册:
class DOMDocument { 
  bool loadXML ( string source [, int options] )
}
即 DOMDocument->loadXML('....')

DOMDocument->save 无论是否有要保存的文件名作为参数,都将返回相应的 XML 串
echo DOMDocument->save()

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn