当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP SimpleXMLElement __toString()用法及代码示例


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




相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | SimpleXMLElement __toString() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。