-3

我有一个程序可以从我的网站更新一些文件,我做了所有的工作,但我在 update.php 脚本中有问题

我的应用程序端更新代码是(在 C# 中):

    public string[] NeededFiles = { "teknomw3.dll" };
    public string HomePageUrl = "http://se7enclan.ir";
    public string NewsUrl = "http://se7enclan.ir/news";
    public string DownloadUrl = "http://se7enclan.ir/";
    public string UpdateList = "http://se7enclan.ir/update.php?action=list";
    public string UpdateBaseUrl = "http://se7enclan.ir/Update/";

如您所见,以及我网站上的更新目录(所有文件都在这里。):

http://se7enclan.ir/Update/

所以我可以在update.php中使用什么脚本:“update.php?action=list”

这个 update.php 脚本必须像这个网站一样工作: http ://mw3luncher.netai.net/update.php?action=list

谢谢你。

4

1 回答 1

1

我理解你的问题人。这是一个解决方案:

<?PHP
  function getFileList($dir)
  {
    // array to hold return value
    $retval = array();

    // add trailing slash if missing
    if(substr($dir, -1) != "/") $dir .= "/";

    // open pointer to directory and read list of files
    $d = @dir($dir) or die("getFileList: Failed opening directory $dir for reading");
    while(false !== ($entry = $d->read())) {
      // skip hidden files
      if($entry[0] == ".") continue;
      if(is_dir("$dir$entry")) {
        $retval[] = array(
          "name" => "$dir$entry/",
          "type" => filetype("$dir$entry"),
          "size" => 0,
          "lastmod" => filemtime("$dir$entry")
        );
      } elseif(is_readable("$dir$entry")) {
       $retval[] = array(
          "name" => "$dir$entry",
          "type" => mime_content_type("$dir$entry"),
          "size" => filesize("$dir$entry"),
          "lastmod" => filemtime("$dir$entry")
        );
      }
   }
    $d->close();

    return $retval;
  }
?>

您可以按如下方式使用此功能:

<?PHP
  // examples for scanning the current directory
  $dirlist = getFileList(".");
  $dirlist = getFileList("./");
?>

为了将结果输出到 HTML 页面,我们只需遍历返回的数组:

<?PHP
  // output file list as HTML table
  echo "<table border="1">\n";
  echo "<tr><th>Name</th><th>Type</th><th>Size</th><th>Last Mod.</th></tr>\n";
  foreach($dirlist as $file) {
    echo "<tr>\n";
    echo "<td>{$file['name']}</td>\n";
    echo "<td>{$file['type']}</td>\n";
    echo "<td>{$file['size']}</td>\n";
    echo "<td>",date('r', $file['lastmod']),"</td>\n";
    echo "</tr>\n";
  }
  echo "</table>\n\n";
?>

希望能帮助到你!

于 2012-06-02T22:47:49.647 回答