dir函数_PHP dir()函数与示例

dir函数

PHP dir()函数 (PHP dir() function)

dir() function is an instance of the directory class, it is used to read the directory, it includes handle and path properties – which can be used to get the resource id and path to the directory. Both handle and path have read(), rewind(), and close() methods.

dir()函数是目录类的实例,用于读取目录,它包括句柄和路径属性–可用于获取资源ID和目录的路径。 句柄和路径都具有read() , rewind()和close()方法。

Syntax:

句法:

    dir(directory,context);

Parameter(s):

参数:

  • directory – It is used to specify the path to the directory to be opened.

    directory –用于指定要打开的目录的路径。

  • context – It is an optional parameter; it defines the context (a set of options that can modify the behavior of the stream).

    上下文 –它是一个可选参数; 它定义了上下文(一组可以修改流行为的选项)。

Return value:

返回值:

On success – it returns an instance to the directory, on fail – it returns "FALSE".

成功–将实例返回目录;失败–将返回“ FALSE”。

Example: PHP code to demonstrate example of dir() function

示例:PHP代码演示dir()函数的示例

<?php 
//path to current working directory
$cwd = dir(getcwd());
echo "Directory handle: " . $cwd->handle . "<br>";
echo "Current path: " . $cwd->path . "<br>";
//reading & printing the filenames using dir()
while (($file = $cwd->read()) !== false){ 
echo "File: " . $file . "<br>"; 
} 
//closing the dir instance
$cwd->close(); 
?>

Output

输出量

Directory handle: Resource id #5
Current path: /home
File: .
File: ..
File: main.php

Reference: PHP dir() function

参考: PHP dir()函数

翻译自: https://www.includehelp.com/php/dir-function-with-example.aspx

dir函数

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543885.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

引用头文件报错 .pch引用不了其他的.h文件

2019独角兽企业重金招聘Python工程师标准>>> 一、编绎显示Unknown type name “CGFloat” 错误解决方法 将Compile Sources As 改为 Objective-C 二、如果是extern const引起的。直接加头文件 #import <UIKit/UIKit.h> 最后在 .h文件 #import <UIKit/UIK…

ibm mq的交互命令模式_IBM的完整形式是什么?

ibm mq的交互命令模式IBM&#xff1a;国际商业机器 (IBM: International Business Machines) IBM is an abbreviation of International Business Machines. It is an I.T based multinational and consulting corporation which is also an American trusted brand in the IT …

iptables 状态策略 允许内网连接外网 拒绝外网主动连入内网 _ 笔记

4种状态newestablishedrelatedinvalidNEW ( a连接b 在b没有回复前 都被称为NEW包)ESTABLISHED ( a和b 连接成功 只有一个连接时 称为ESTABLISHED状态 )a和b一旦连接看到两个方向上都有通信流&#xff0c;与此附加相关的其它包都被看作处于 ESTABLISHED 状态RELATED ( a和b 连接…

r软件说明lib文件未指明_软件说明文件

r软件说明lib文件未指明The software primarily consists of Computer Programs and the associated documentation. We all know that the computer program is the baseline of the entire software, but the documentation part is also as important as the programming pa…

NSTimer详解

1、初始化 (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo; (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector us…

linux cnc_CNC的完整形式是什么?

linux cncCNC&#xff1a;计算机数控 (CNC: Computerized Numerical Control) CNC is an abbreviation of Computerized Numerical Control. It is an automated controlling system with which digital electronic computers are used to control, automate, and monitor the …

dfa与ndfa_DFA和NDFA之间的区别| 目录

dfa与ndfaDFA stands for Deterministic Finite Automata and NDFA stands for Non-Deterministic Finite Automata. DFA代表确定性有限自动机&#xff0c;而NDFA代表非确定性有限自动机。 Read more: Deterministic Finite Automata (DFA) 阅读更多&#xff1a; 确定性有限自…

css圆角三角形3个圆角_CSS中的圆角

css圆角三角形3个圆角CSS | 圆角 (CSS | Rounded Corners) border-radius property is commonly used to convert box elements into circles. We can convert box elements into the circle element by setting the border-radius to half of the length of a square element.…

数据库范式5nf_第四范式(4NF)| 数据库管理系统

数据库范式5nfFourth normal form (4NF) is a normal form used in database normalization, in which there are no non-trivial multivalued dependencies except a candidate key. After Boyce–Codd normal form (BCNF), 4NF is the next level of normalization. Although…

da---tlc5615._CD-DA的完整形式是什么?

da---tlc5615.CD-DA&#xff1a;光盘数字音频 (CD-DA: Compact Disc Digital Audio) CD-DA is an abbreviation of "Compact Disc Digital Audio". CD-DA是“光盘数字音频”的缩写 。 It is also known as Audio CD, is the established conventional format for au…

iti axi dsp_ITI的完整形式是什么?

iti axi dspITI&#xff1a;工业培训学院 (ITI: Industrial Training Institute) ITI is an abbreviation of the Industrial Training Institute. It offers training in engineering and non-engineering technical fields. It is a post-secondary school in India which is…

文本分析工具 数据科学_数据科学工具

文本分析工具 数据科学The Data Scientist is the "Sexiest job of 21 Century", by Harvard Business Review, however, what specifically will a data Scientist do, what tools do they use? 数据科学家是《哈佛商业评论》(Harvard Business Review)所说的“ 21…

appweb ejs_具有快速路线的EJS

appweb ejsHI! Welcome to NODE AND EJS TEMPLATE ENGINE SERIES. Today, we will see how we can work with EJS and routes? 嗨&#xff01; 欢迎使用NODE和EJS模板引擎系列 。 今天&#xff0c;我们将看到如何使用EJS和路由&#xff1f; A route is like a sub domain wit…

数据分析 数据科学_数据科学中的数据分析

数据分析 数据科学资料剖析 (Data Profiling) Data Profiling is a method of examining data from an existing supply and summarizing info this data. Your profile data to work out the accuracy, completeness, and validity of your data. Information identification …

bpl开发模式_BPL的完整形式是什么? 什么是电力线宽带

bpl开发模式BPL&#xff1a;电力线宽带 (BPL: Broadband Over Power Lines) BPL is an abbreviation of "Broadband Over Power Lines". BPL是“电力线宽带”的缩写 。 BPL is also occasionally called as Internet over power line (IPL) or power line telecommu…

ups一直响是什么原因_UPS的完整形式是什么?

ups一直响是什么原因UPS&#xff1a;不间断电源 (UPS: Uninterruptible Power Supply) UPS is an abbreviation of Uninterruptible Power Supply. It operates with the support of a battery which is used to supply power in the lack of most important source or when th…

语音asr是什么意思_ASR的完整形式是什么?

语音asr是什么意思ASR&#xff1a;自动语音识别 (ASR: Automated Speech Recognition) ASR stands for Automated Speech Recognition. With the help of this technology, spoken words can be easily converted to written text. What actually it does? It gives access to…

数据库缓冲池_块缓冲| 数据库管理系统

数据库缓冲池When several blocks need to be transferred from disk to main memory and all the block addresses are known, several buffers can be reserved in main memory to speed up the transfer. 当需要将几个块从磁盘传输到主存储器并且所有块地址已知时&#xff0…

python公共变量_Python中的公共变量

python公共变量By default all numbers, methods, variables of the class are public in the Python programming language; we can access them outside of the class using the object name. 默认情况下&#xff0c;该类的所有数字&#xff0c;方法和变量在Python编程语言中…

递归如何书写?

目录 第一步&#xff1a;首先你分析问题&#xff0c;要有递归的思路&#xff0c;知道要递归什么来解决问题。 第二步&#xff1a;先按照思路&#xff08;第一层&#xff09;写出函数的定义与函数体 第三步&#xff1a;根据函数的定义与函数体进一步确定需要的参数 第四步&a…