scandir()期望参数1是有效路径

时间:2014-02-21 06:36:58

标签: php

您好我是php的新手,因为我不太了解解决我在获取文件夹中的文件名时所发出的警告。

警告:scandir()希望参数1成为有效路径。

但是在上传文件时我使用了相同的路径; 路径是:store_documents /

这是我非常简单的代码:

$dir=opendir("store_documents/");
$read_file=scandir($dir);
echo $read_file;

2 个答案:

答案 0 :(得分:2)

<?
$dir    = 'store_documents';
$files = scandir($dir);
print_r($files);

试试这段代码。

答案 1 :(得分:0)

<?php 
error_reporting(0);
$dir="store_documents";
$read_file=@scandir($dir);
echo $read_file;
?>

@将删除警告尝试error_reporting(0);(您不需要两者)