View Single Post
  #1   IP: 49.87.3.64
Old 2015-10-30, 10:05 PM
admin admin is offline
论坛管理员
 
Join Date: 2006-01-04
Posts: 42
admin has disabled reputation
Default php 如何删除后缀名是.jpg的文件

<?php
$obj = glob("*.jpg");
foreach($obj as $file){
unlink($file);
}
?>
Reply With Quote