时间:2021-07-01 10:21:17 帮助过:3人阅读
if (!file_exists('index.html')){
file_put_contents('index.html', 'hello world');
}
$imgUrl = '/file/2015/05/20/100.gif';
$path = dirname($imgUrl);
createHtml($path);
function createHtml($path)
{
if (!file_exists($path . '/index.html')){
file_put_contents($path . '/index.html', 'hello world');
}
createHtml(dirname($path));
}
file_put_contents(dirname($img_path) . '/index.html', '');
@mkdir(dirname($img_path), 0666, true);