PHP搜索文件

时间:2017-09-02 11:26:53

标签: php ajax file glob

所以我正在使用metro ui css做一个文件系统,我想做一个文件搜索系统。我已经有了一些代码,而且我使用的是AJAX。

我没有看到任何显示ajax代码的观点,就像所有内容一样。

PHP:

<?php 

sleep(2);
if(!$_POST) {
    die('hell no');
}

include('../config.php');

$where_post = $_POST['where']; 
$text = $_POST['text']; 

if($where_post == 'Anywhere') {
    $where = 'folders/*'; 
}
elseif ($where_post == 'CMS') {
    $where = 'folders/CMS';
}
elseif ($where_post == 'Emulator') {
    $where = 'folders/Emulator';
}
elseif ($where_post == 'Full Packs') {
    $where = 'folders/Full Packs';
}
elseif ($where_post == 'Furni Packs') {
    $where = 'folders/Furni Packs';
}
elseif ($where_post == 'SQL') {
    $where = 'folders/SQL';
}
elseif ($where_post == 'SWF') {
    $where = 'folders/SWF';
}
$files = glob("../".$where."/*". $text ."*.*", GLOB_NOCHECK);

if(count($files) > 0){
     foreach($files as $file){                  
        var_dump($files);
             }
}

 ?>

所以我的问题是,我该如何展示它?我没有设计atm,所以我稍后会实现它。

谢谢!

0 个答案:

没有答案