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


PHP XMLReader lookupNamespace()用法及代码示例


XMLReader::lookupNamespace()函数是PHP中的内置函数,用于在范围命名空间中查找给定前缀。

用法:

string XMLReader::lookupNamespace( string $prefix )

参数:该函数接受单个参数$prefix,该参数保存包含前缀的字符串。



返回值:如果成功,则此函数返回TRUE;如果失败,则返回FALSE。

下面给出的程序说明了PHP中的XMLReader::lookupNamespace()函数:

程序1:
文档名称: data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div xmlns:z="my_namespace"> 
    <z:h1 z:attrib="value"> Foo Bar </z:h1> 
</div>

文档名称: index.php

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
// Open the XML file 
$XMLReader->open('data.xml'); 
  
// Read the node 
$XMLReader->read(); 
  
// Get the namespace with prefix y 
$NS = $XMLReader->lookupNamespace("y"); 
  
// Show the namespace to browser 
echo $NS; 
?>

输出:

// Empty string because there is no namespace with prefix y.

程序2:
文档名称: data.xml

<?xml version="1.0" encoding="utf-8"?> 
<div xmlns:x="geeksforgeeks"> 
    <x:h1 x:attrib="value"> Namespaced Text </x:h1> 
</div>

文档名称: index.php

<?php 
  
// Create a new XMLReader instance 
$XMLReader = new XMLReader(); 
  
// Open the XML file 
$XMLReader->open('data.xml'); 
  
// Read the node 
$XMLReader->read(); 
  
// Get the namespace with prefix x 
$NS = $XMLReader->lookupNamespace("x"); 
  
// Show the namespace to browser 
echo $NS; 
?>

输出:

geeksforgeeks

参考: https://www.php.net/manual/en/xmlreader.lookupnamespace.php




相关用法


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