PHP 从PHP中的XML文件获取指定标记的内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 从PHP中的XML文件获取指定标记的内容相关的知识,希望对你有一定的参考价值。

//Get the contents of a specified tag ($tag) of the specified XML file ($xmlFile)
function getXmlData($xmlFile, $tag)
{
	$output = substr($xmlFile, strpos($xmlFile, "<".$tag.">") + strlen("<".$tag.">"), 
						strpos($xmlFile, "</".$tag.">")- strpos($xmlFile, "<".$tag.">") - strlen("<".$tag.">"));
	return $output;
}

以上是关于PHP 从PHP中的XML文件获取指定标记的内容的主要内容,如果未能解决你的问题,请参考以下文章

php PHP的正则表达式从XML中获取指定标签中的内容

如何从 PHP 中的以下 SOAP XML 响应中获取 pinBlocked 标记

PHP获取目录中的全部内容RecursiveDirectoryIterator

如何从 php 中列出的数组中获取 xml 输出?

如何使用 PHP 跳过 XML 文件中的无效字符

如何通过php和MySQL创建xml文件[重复]