这个 PHP 脚本有什么问题?
以下脚本不执行:
<?php
$year = date(Y);
$month = date(M);
$dirloc = "/images/".$year."/".$month;
mkdir($dirloc, 0700);
?>
为什么?
谢谢
The following script does not execute:
<?php
$year = date(Y);
$month = date(M);
$dirloc = "/images/".$year."/".$month;
mkdir($dirloc, 0700);
?>
Why?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您提供的路径是绝对路径,您可能无权在其中创建目录或文件。如果您想在当前工作目录(运行脚本的目录)中创建目录,请尝试
此外,您似乎想创建多个文件夹。如果父文件夹不存在,并且您不允许它递归地创建父文件夹,则
mkdir
将失败。The path you provide is absolute and you probably don't have the rights to create directories or files there. If you want to create the directory in the current work directory (the one you run the script from), try
Also it seems, that you want to create more than one folder. If the parent folder doesn't exists,
mkdir
fails, if you don't allow it to create the parents recursively.你忘记引用了:
You forgot quotes:
对 date() 函数使用引号:
Use quotes for the date() function: