


h5 PHP directory management function library compatible with PHP5
Mainly compatible with: PHP 5
1. chdir -- Change directory
Syntax: bool chdir (string directory)
Return value: integer
Function type: File access
Content description:
Change the current directory of PHP to directory. directory: the new current directory. Return value TRUE if successful, FALSE if failed.
Example explanation:
Program code
// current directory
echo getcwd() . "n";
chdir('public_html');
// current directory
echo getcwd() . "n";
?>
The output result is:
/home/vincent
/home/vincent/public_html
Note: "Warning: chdir(): No such file or directory (errno 2) in ****" will appear in the loop statement * on line *" error.
Program code
// current directory
echo getcwd() . "n";
for($i=1; $i<=2; $i++){
chdir('whoist');
// current directory
echo getcwd() . "n";
}
?>
2. dir -- directory class
Syntax: new dir(string directory);
Return value: class
Function type: file access
Content description:
This is a similar object-oriented category class, used to read directories. When the directory parameter directory is opened, two attributes are available: the handle attribute is like readdir(), rewinddir() and closedir() used by other non-class functions; the path attribute configures the path parameters after opening the directory. This class has three methods: read, rewind and close.
class dir {
dir ( string directory )
string path
resource handle
string read ( void )
void rewind ( void )
void close ( void )
}
Example explanation:
Program code
< ;?php
$ d = dir("/etc/php5");
echo "Handle: " . $d->handle . "n";
echo "Path: " . $d->path . "n";
while (false !== ($entry = $d->read())) {
echo $entry."n";
}
$d->close();
?>
The output result is:
Handle: Resource id #2
Path: /etc/php5
.
..
apache
cgi
cli
Note: The order of directory entries returned by the read method depends on the system.
Note: This function defines the internal class Directory, which means that the user's own class cannot be defined with the same name.
3. closedir -- Close directory handle
Syntax: void closedir (resource dir_handle)
Return value: None
Function type: File access
Content description:
Close the directory stream specified by dir_handle. The stream must have been previously opened by opendir().
Example explanation:
Program code
$dir = "/etc/php5/";
// Open a known directory, read directory into variable and then close
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
$directory = readdir($dh);
closedir($dh);
}
}
?>
4. opendir -- Open directory handle
Syntax: resource opendir (string path [, resource context])
Return value: integer
Function type: File access
Content description:
This function is used to open the directory data stream. The returned integer is a handle that can be operated by other directory functions closedir(), readdir() and rewinddir(). If successful, the resource of the directory handle is returned, if failed, FALSE is returned.
Example explanation:
Program code
$dir = "/etc/php5/";
// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo "filename: $file : filetype: " . filetype($dir . $file) . "n";
}
closedir($dh);
}
}
?>
The output result is:
filename: . apache : filetype : dir
filename: cgi : filetype: dir
filename: cli : filetype: dir
The above introduces the h5 PHP directory management function library compatible with PHP5, including h5 content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



H5 refers to HTML5, the latest version of HTML. H5 is a powerful markup language that provides developers with more choices and creative space. Its emergence promotes the development of Web technology, making the interaction and effect of web pages more Excellent, as H5 technology gradually matures and becomes popular, I believe it will play an increasingly important role in the Internet world.

This article will help you quickly distinguish between H5, WEB front-end, large front-end, and WEB full stack. I hope it will be helpful to friends in need!

In H5, you can use the position attribute to control the positioning of elements through CSS: 1. Relative positioning, the syntax is "style="position: relative;"; 2. Absolute positioning, the syntax is "style="position: absolute;" "; 3. Fixed positioning, the syntax is "style="position: fixed;" and so on.

Implementation steps: 1. Monitor the scroll event of the page; 2. Determine whether the page has scrolled to the bottom; 3. Load the next page of data; 4. Update the page scroll position.

The rendering description is based on vue.js and does not rely on other plug-ins or libraries; the basic functions remain consistent with element-ui, and some adjustments have been made to the internal implementation for mobile terminal differences. The current construction platform is built using the uni-app official scaffolding. Because most mobile terminals currently have two types: h6 and WeChat mini-programs, it is very suitable for technology selection to run one set of code on multiple terminals. Implementation idea core api: use provide and inject, corresponding to and. In the component, a variable (array) is used internally to store all instances, and the data to be transferred is exposed through provide; the component uses inject internally to receive the data provided by the parent component, and finally combines its own attributes with method submission

This article will give you an introduction to the new H5 promotion tags. I hope it will be helpful to friends in need!

HTML5 and PHP are two technologies commonly used in web development. The former is used to build page layout, style and interaction, and the latter is used to handle server-side business logic and data storage. Let’s dive into the relevant knowledge of HTML5 and PHP.

H5 improves web page accessibility and SEO effects through semantic elements and ARIA attributes. 1. Use, etc. to organize the content structure and improve SEO. 2. ARIA attributes such as aria-label enhance accessibility, and assistive technology users can use web pages smoothly.
