Home >Backend Development >PHP Tutorial >PHP处理文件(转载)

PHP处理文件(转载)

WBOY
WBOYOriginal
2016-06-23 14:28:51758browse

简介:这是PHP处理文件(转载)的详细页面,介绍了和php,php, tar PHP处理文件(转载)有关的知识、技巧、经验,和一些php源码等。

class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=345992' scrolling='no'>
<?php $dir     =   './temp';    $desc   =   'tar_test.tar.gz';    system("tar   czvf   $desc   $dir");   //压缩    //system("tar   zxvf   $desc");             //解压 ?><?phpfunction d_rmdir($dirname) {   //删除非空目录if(!is_dir($dirname)) {return false;}$handle = @opendir($dirname);while(($file = @readdir($handle)) !== false){if($file != '.' && $file != '..'){$dir = $dirname . '/' . $file;is_dir($dir) ? d_rmdir($dir) : unlink($dir);}}closedir($handle);return rmdir($dirname) ;}if(d_rmdir("./temp")) echo "succes";else echo "false";?>

爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

http://biancheng.dnbcw.info/php/345992.html pageNo:4
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php配置mongo扩展Next article:PHP注释及与HTML混写