Php调用Unix/Linux命令举例
时间:2007-02-17 来源:PHP爱好者
Php调用Unix/Linux命令举例
关键词:PHP
由于主页空间有限
所以我直接从zip包里面读文件出来
功能:做一个flash的.swf的预览
当用户点击页面里面的链接是输出相应的.swf
链接:Click Here
preview.php3
-------------------------------------------------------------------------
$filename = rawurldecode($filename);
if (file_exists($filename)){
$swffilename = substr($filename,strrpos($filename,"/")+1,strrpos($filename,".")-strrpos($filename,"/"))."swf";//从"gallery/test.zip"找出.swf的文件名 test.swf
header ("Content-Type: application/x-shockwave-flash");//告诉浏览器要输出swf
passthru(escapeshellcmd("unzip -p ".$filename." ".$swffilename));直接执行unzip不加任何处理输出
}else header("Location: http://edunix.cic.tsinghua.edu.cn/~s970462/flash/filenotfound.htm");//文件不存在redirect
?>
php爱好者 站 http://www.phpfans.net 网页制作|网站建设|数据采集.
关键词:PHP
由于主页空间有限
所以我直接从zip包里面读文件出来
功能:做一个flash的.swf的预览
当用户点击页面里面的链接是输出相应的.swf
链接:Click Here
preview.php3
-------------------------------------------------------------------------
$filename = rawurldecode($filename);
if (file_exists($filename)){
$swffilename = substr($filename,strrpos($filename,"/")+1,strrpos($filename,".")-strrpos($filename,"/"))."swf";//从"gallery/test.zip"找出.swf的文件名 test.swf
header ("Content-Type: application/x-shockwave-flash");//告诉浏览器要输出swf
passthru(escapeshellcmd("unzip -p ".$filename." ".$swffilename));直接执行unzip不加任何处理输出
}else header("Location: http://edunix.cic.tsinghua.edu.cn/~s970462/flash/filenotfound.htm");//文件不存在redirect
?>
php爱好者 站 http://www.phpfans.net 网页制作|网站建设|数据采集.
相关阅读 更多 +