这篇文章主要介绍了php循环创建目录示例,原理就是不断的尝试创建上层目录,依此类推,需要的朋友可以参考下
复制代码 代码如下:
function mk_dir($dir, $mod = 0777)
{
if(!is_dir($dir) || mkdir($dir, $mod))
{
if(!mk_dir(dirname($dir, $mod)))
{
return false;
}
}
return mkdir($dir, $mod);
}
原理:就是不断的尝试创建上层目录,依此类推 ,

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

WebStorm Mac version
Useful JavaScript development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1
Powerful PHP integrated development environment
