我需要将搜索扩展到子文件夹。
我需要一些帮助来修改和添加这个脚本的功能:
<?php
if(isset($_GET['s']) and $_GET['s'] != '') {
$dir = 'dir/sub-dir';
$ext = '.htm';
$search = $_GET['s'];
$results = glob("$dir/*$search*$ext");
if(count($results) != 1) {
foreach($results as $item) {
echo "<li><a href='$item'>$item</a></li>\r\n";
}
}
if(count($results) == 1) {
$item = $results[0];
echo "<li color='blue'><a href='$item'>$item - only result</a></li>\r\n";
}
if(count($results) == 0) {
echo "<li>no results to display</li>\r\n";
}
}
else {
?>
<form action=''>
<input name='s'>
<input type='submit'>
</form>
<?php
}
?>