1 Star 0 Fork 0

skykainls/crontab-Framework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
functions.php 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
function mkdirs( $dir, $mod = 0777){
return is_dir ( $dir ) or mkdirs(dirname( $dir )) and mkdir ( $dir , $mod);
}
/**
* 获取制定目录下的文件名(递归获取)
* @param [type] $path [目录]
* @return [type] [description]
*/
function getPathFiles($path, $strreplace='') {
static $files = [];
$dir = opendir($path);
while ($file = readdir($dir)) {
if ( $file == '.' || $file == '..' ) {
continue;
}
if ( is_dir($path . $file) ) {
$files = array_merge($files, getPathFiles($path . $file . '/', $strreplace));
}
else {
$files[] = str_replace($strreplace, '', $path) . $file;
}
}
return array_unique($files);
}
/**
* 获取配置文件
* @param [type] $file [description]
* @param string $key [description]
* @return [type] [description]
*/
function &config($file, $key='') {
static $config = [];
if ( isset($config[$file]) ) {
if ( $key && isset($config[$file][$key]) ) {
return $config[$file][$key];
}
else
{
return '';
}
return $config[$file];
}
$filename = CONFIG . $file . '.php';
if ( !is_file($filename) ) {
exit('配置文件不存在: ' . $filename);
}
$config[$file] = require $filename;
if ( isset($config[$file][$key]) ) {
return $config[$file][$key];
}
return $config[$file];
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/skykain/crontab.git
git@gitee.com:skykain/crontab.git
skykain
crontab
crontab-Framework
master

搜索帮助