PHP判断文件夹是否存在和创建文件夹的方法

xiaoxiao2021-02-28  144

<?php $filename = date("Ym"); $path = "./images/".$filename; if (!file_exists($path)){ mkdir($path); }
转载请注明原文地址: https://www.6miu.com/read-44593.html

最新回复(0)