变量内的变量-PHP

时间:2019-02-27 22:07:56

标签: php

我正在尝试检查文件夹是否为空。

我使用Apache服务器和Windows 10操作系统。

我的代码有什么问题?

function is_dir_empty($dir) {
  if (!is_readable($dir)) return NULL; 
  return (count(scandir($dir)) == 2);
}

$dir = "C:/Users/name/.spyder/Python2/data/$day-$month-$year/emptyFolder";
print "<br>$dir<br>";
if (is_dir_empty($dir)) {
  echo "the folder is empty"; 
}else{
  echo "the folder is NOT empty";
}

0 个答案:

没有答案