Home  >  Article  >  Backend Development  >  php+xml实现在线英文词典查询的方法_php技巧

php+xml实现在线英文词典查询的方法_php技巧

WBOY
WBOYOriginal
2016-05-16 20:25:061006browse

本文实例讲述了php+xml实现在线英文词典查询的方法。分享给大家供大家参考。具体如下:

这里的xml相当于一个数据库。实现:查询某个英文单词,输出它的中文意思。

xml文件(数据库):words.xml如下:

复制代码 代码如下:



 boy
 男孩


 girl
 女孩


 teacher
 老师


 beauty
 美女

查询文件:word.php

复制代码 代码如下:

在线英汉词典



请输入英文单词:

处理文件:xmlprocess.php

复制代码 代码如下:
//创建xml对象
$xmldoc = new DOMDocument();
$xmldoc->load("words.xml");
//查询
if(!empty($_POST['sub'])){
 $en_word = $_POST['enword'];
 $word = $xmldoc->getElementsByTagName("en");
 for($i=0;$ilength;$i++){
  if($en_word==$word->item($i)->nodeValue){
   $cn_word = $xmldoc->getElementsByTagName("ch")->item($i)->nodeValue;
   break;
  }else{
   $cn_word = "找不到你所输入的单词";
  }
 }
}
echo $cn_word;
?>

希望本文所述对大家的php操作XML程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn