簡單的PHP web文件分享
添加時間:2014-12-30 19:23:09
添加:
思海網(wǎng)絡(luò)
很簡單,用于文件在web分享
1 執(zhí)行*nix命令獲取本目錄文件
2 生成下載鏈接
3 支持中文名,名稱內(nèi)可含有空格
4 源代碼請保存為utf-8編碼
5 假設(shè)分享路徑為http://xx_host/xx_dir,代碼命名為index.php放在xx_dir目錄,生成除index.php外的所有文件下載鏈接
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>private file box</title> </head> <body> <h2>private file box</h2> <?php function list_file_url() { exec ( "/bin/ls", $res, $rc ); //echo "<pre>"; // var_dump ( $res ); // var_dump ( $rc ); // echo "</pre>"; if (0 == $rc) { //echo count ( $res ) . "<br />"; //echo "<br />"; for($i = 0; $i < count ( $res ); $i ++) { if ($res[$i] != "index.php") { //echo $res [$i] . "<br />"; $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 "<a href=\"./$encoded_url\">$encoded_filename</a>"; echo "<br />"; echo "<br />"; } } } } list_file_url (); ?> </body> </html>
關(guān)鍵字:PHP、web、文件分享
新文章:
- CentOS7下圖形配置網(wǎng)絡(luò)的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統(tǒng)后丟失windows啟動項
- CentOS單網(wǎng)卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網(wǎng)打印機IP講解
- CentOS7使用hostapd實現(xiàn)無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網(wǎng)絡(luò)重啟出錯
- 解決Centos7雙系統(tǒng)后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統(tǒng)有什么不同呢
- Centos 6.6默認iptable規(guī)則詳解