PHP: XML 기반 온라인 작은 사전 사례

WBOY
풀어 주다: 2016-07-30 13:31:02
원래의
1042명이 탐색했습니다.
html> <html lang="en"> <head> <meta charset="gb2312"> <title>dictionarytitle> head> <img src="view.jpg" width="400px" /> <h1>查询单词h1> <form action="wordProcess.php" method="post" > 请输入单词:<input type="text" name="enword" /> <input type="hidden" name="type" value="query"> <input type="submit" value="查询"> form> <h1>添加单词h1> <form action="wordProcess.php" method="post"> 请输入英文:<input type="text" name="enword" /><br> 请输入中文:<input type="text" name="chword" /><br> <input type="hidden" name="type" value="add" /> <input type="submit" value="添加"> form>

html>

$type=$_POST['type']; $xmlDoc=new DOMDocument(); $xmlDoc->load("words.xml"); if($type=="query"){ $query_word=$_POST['enword']; $words=$xmlDoc->getElementsByTagName("word"); $isEnter=false; for($i=0;$i<$words->length;$i++){ $word=$words->item($i); $word_en=getNodeVal($word,"en"); if($query_word==$word_en){ $isEnter=true; echo $query_word."--中文意思:".getNodeVal($word,"ch")."
"
; } } if(!$isEnter){ echo "NOT FOUNDED"; } }else if($type=="add"){ $eng_word=$_POST['enword']; $ch_word=$_POST['chword']; $root=$xmlDoc->getElementsByTagName("words")->item(0); $new_word=$xmlDoc->createElement("word"); $new_word_en=$xmlDoc->createElement("en"); $new_word_en->nodeValue=$eng_word; $new_word_ch=$xmlDoc->createElement("ch"); $new_word_ch->nodeValue=$ch_word; $new_word->appendChild($new_word_en); $new_word->appendChild($new_word_ch); $root->appendChild($new_word); $b=$xmlDoc->save("words.xml"); if(!$b){ echo "添加失败"; }else{ echo "添加成功"; } } function getNodeVal(&$mynode,$tagname){ return $mynode->getElementsByTagName($tagname)->item(0)->nodeValue; } echo "
BACK "
;


이상에서는 PHP의 사례를 소개했습니다: XML 기반 온라인 소사전 관련 내용을 포함하여 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!