编程开发

上次观看到

当前位置:首页> 鸡米饭>编程开发>

php读取xml文件最高效的办法

2021.12.05 11:57 阅读次数: 出自:鸡米饭 作者:绝歌一首

function getword($wrod,$fontid){
$XMLReader = new XMLReader(); 
  
// Load the XML file 
$XMLReader->open('1.svg'); 
  
// Iterate through the XML 
while ($XMLReader->read()) { 
    if ($XMLReader->nodeType == XMLREADER::ELEMENT) { 
  
        // Get the value of first attribute 
        $unicode = $XMLReader->getAttributeNo(1); 
  if ($unicode==$wrod) return $XMLReader->getAttributeNo(2) ;
  
    } 
} 

}
echo getword("黄",1);
echo getword("引",1);
echo getword("齐",1);

最近才认识svg格式  

懂得越多越觉得我是文盲

上一篇:每行最后一个元素单独设   下一篇: