Rumah > Artikel > pembangunan bahagian belakang > php opendir函数怎么用
php opendir()函数用于打开目录句柄,其语法是opendir(path,context),参数path必需,指规定要打开的目录路径。
php opendir函数怎么用?
php opendir()函数 语法
作用:打开目录句柄。
语法:
opendir(path,context);
参数:
path 必需。规定要打开的目录路径。
context 可选。规定目录句柄的环境。context 是可修改目录流的行为的一套选项。
说明:
成功则返回目录句柄资源。失败则返回 FALSE。如果路径不是合法目录,或者由于许可限制或文件系统错误导致的目录不能打开,则抛出 E_WARNING 级别的错误。
php opendir()函数 示例
<?php $file = "/phpstudy/WWW/"; if (opendir($file)) { echo "打开目录成功"; }else{ echo "打开目录失败"; } ?>
本篇文章就是关于PHP opendir函数的介绍,希望对需要的朋友有所帮助!
Atas ialah kandungan terperinci php opendir函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!