支持多级目录建立的php函数
支持多级目录建立的php函数本函数php自定义函数是一款建立文件夹的路径并且支持多级目录实例函数哦。
支持多级目录建立的php教程函数
本函数php自定义函数是一款建立文件夹的路径并且支持多级目录实例函数哦。
* create_dir(建立文件夹的路径,支持多级目录);
*/
function create_dir($dir_adds='') {
$falg = true;
$dir_adds = trim($dir_adds);
if($dir_adds!=''){
$dir_adds = str_replace(array('//','','\'),'/',$dir_adds);
if (!is_dir($dir_adds)) {
$temp = explode('/',$dir_adds);
$cur_dir = '';
for($i=0;$i$cur_dir .= $temp[$i].'/';
if (!@is_dir($cur_dir)) {
if(!@mkdir($cur_dir,0777))
$falg = false;
}
}
}
return $falg;
}
}
//看一款目录检测并写文件函数
function htm_w(
$w_dir = '',
$w_filename = '',
$w_content = ''
){$dvs = '';
if($w_dir && $w_filename && $w_content){
//目录检测数量
$w_dir_ex = explode('/',$w_dir);
$w_new_dir = ''; //处理后的写入目录
unset($dvs,$fdk,$fdv,$w_dir_len);
foreach((array)$w_dir_ex as $dvs){
if(trim($dvs) && $dvs!='..'){
$w_dir_len .= '../';
$w_new_dir .= $dvs.'/';
if (!@is_dir($w_new_dir)) @mkdir($w_new_dir, 0777);
}
}
//获得需要更改的目录数
foreach((array)$this->filedir as $fdk=>$fdv){
$w_content = str_replace($fdv,$w_dir_len.str_replace('../','',$fdv),$w_content);
}
$this->writer($w_dir.$w_filename,$w_content);
}
}
?>

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

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

Validator can be created by adding the following two lines in the controller.
