XMLReader::__toString()函数是PHP中的内置函数,用于获取直接位于当前元素中的文本内容。此函数不返回该元素的子元素内的文本内容。
用法:
void XMLReader::__toString( void )
参数:此函数不接受任何参数。
返回值:如果成功,则此函数返回字符串内容;如果失败,则返回空字符串。
以下示例说明了PHP中的XMLReader::__toString()函数:
范例1:
<?php
// Create the XML
$xmlstr = <<<XML
<?xml version='1.0'?>
<library>
GeeksforGeeks
</library>
XML;
// Create a new SimpleXMLElement
$SXE = new SimpleXMLElement($xmlstr);
// Get the content
$string = $SXE->__toString();
echo $string;
?>
输出:
GeeksforGeeks
范例2:
<?php
// Create the XML
$xmlstr = <<<XML
<?xml version='1.0'?>
<div>
<sub>
This text should not be visible
</sub>
</div>
XML;
// Create a new SimpleXMLElement
$SXE = new SimpleXMLElement($xmlstr);
// Add the attribute
$string = $SXE->__toString();
echo $string;
?>
输出:
// Empty string because text content is in a childern node not current node.
参考: https://www.php.net/manual/en/simplexmlelement.tostring.php
相关用法
- PHP SimpleXMLElement addChild()用法及代码示例
- PHP SimpleXMLElement getDocNamespaces()用法及代码示例
- PHP SimpleXMLElement getNamespaces()用法及代码示例
- PHP SimpleXMLElement addAttribute()用法及代码示例
- PHP SimpleXMLElement saveXML()用法及代码示例
- PHP SimpleXMLElement XPath()用法及代码示例
- PHP SimpleXMLElement asXML()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- PHP SimpleXMLElement count()用法及代码示例
- PHP SimpleXMLElement::getName()用法及代码示例
- PHP SimpleXMLElement attributes()用法及代码示例
- PHP SimpleXMLElement registerXPathNamespace()用法及代码示例
- PHP SimpleXMLElement::__construct()用法及代码示例
- d3.js color.toString()用法及代码示例
- Javascript symbol.toString()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | SimpleXMLElement __toString() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。