unlink()
语法: int unlink(string filename);
返回值: 整数
函数种类: 文件存取。如:
unlink("tmp/test.txt");PHP按行 去掉换行符” ”:
$content=str_replace("
","",$content);
echo $content;
$content=str_replace(array("
","
"),"",$content);
$content=preg_replace("/s/","",$content);
$content=trim($content);2. 获取文件夹下面的文件名
$dir = "message/"; // 文件夹的名称
if (is_dir($dir)){
if ($dh = opendir($dir)){
while (($file = readdir($dh)) !== false){
echo "文件名: $file <br>";
}
closedir($dh);
}
}3. 读取文件夹下面的图片名
<?php
$handle = opendir('images/'); //当前目录
while (false !== ($file = readdir($handle))) { //遍历该php文件所在目录
list($filesname,$kzm)=explode(".",$file);//获取扩展名
if($kzm=="gif" or $kzm=="jpg" or $kzm=="JPG") { //文件过滤
if (!is_dir('./'.$file)) { //文件夹过滤
$array[]=$file;//把符合条件的文件名存入数组
$i++;//记录图片总张数
}
}
}
print_r($array);
?>| 欢迎光临 一起源码网 (https://www.171739.xyz/) | Powered by Discuz! X3.3 |