简单的字典搜索引擎

时间:2015-11-11 04:26:22

标签: php dictionary search-engine

我有一个代码,假设你运行一个字典搜索引擎,我刚刚开始并坚持下去。这是我的完整代码。



<html>
<head>
<title><center>Dictionary</center></title>
</head>
<body>

<br><br>
<center>

<form action="" method=get>
<input type=text name=query style="font:11px arial; font-weight:bold; background:#FFFFDD;">
<input type=submit name=submit  >
</form>

<br>



<br>
<br>
<table width=400 align=center><tr><td>

  <?php

$txt_file= file_get_contents('dcdocument.txt');// << i put a path over here
 $rows= explode("\n", $txt_file);


 foreach($rows as $row => $data)
{ 
    //i have a long list of words and separated the words from definition using":::"
	if ($row_data = ':::'){
		explode(':::', $data);
	};
	
    $row_data = explode('::::', $data);
	?>
  
  
</table>



<br> <br>
</center>
</form>
</body>

<html>
&#13;
&#13;
&#13;  我几乎要做的是用户在搜索引擎中输入单词,当他们按下“搜索”时,定义会显示出来。我知道这是一个糟糕的开始,但我需要所有帮助才能节省大量时间。感谢

1 个答案:

答案 0 :(得分:0)

由于您正在尝试构建搜索引擎,因此可以使用preg_match将字符串与用户搜索的内容进行匹配。