当前位置:Gxlcms > PHP教程 > 简单的PHP用于web文件_PHP教程

简单的PHP用于web文件_PHP教程

时间:2021-07-01 10:21:17 帮助过:6人阅读

很简单,用于文件在web分享

1 执行*nix命令获取本目录文件
2 生成下载链接
3 支持中文名,名称内可含有空格
4 源代码请保存为utf-8编码
5 假设分享路径为http://xx_host/xx_dir,代码命名为index.php放在xx_dir目录,生成除index.php外的所有文件下载链接




private file box



private file box

"; // var_dump ( $res ); // var_dump ( $rc ); // echo "
"; if (0 == $rc) { //echo count ( $res ) . "
"; //echo "
"; for($i = 0; $i < count ( $res ); $i ++) { if ($res[$i] != "index.php") { //echo $res [$i] . "
"; $encoded_url = urlencode($res[$i]); $encoded_url = str_replace("+","%20",$encoded_url); $encoded_filename = iconv("GBK","UTF-8",$res[$i]); $encoded_temp_filename = explode(".",$encoded_filename); $encoded_filename = $encoded_temp_filename[0]; echo "$encoded_filename"; echo "
"; echo "
"; } } } } list_file_url (); ?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/371393.htmlTechArticle很简单,用于文件在web分享 1执行*nix命令获取本目录文件 2生成下载链接 3支持中文名,名称内可含有空格 4源代码请保存为utf-8编码 5假设分...

人气教程排行