为表中的每个类别 id 建立目录
我想用 php 为 Mysql 表中的每个类别 id 创建大约 1000 个目录。该函数需要在创建目录之前检查目录名称(id)是否已存在。 我该怎么做?
I would like to create some 1000 directories with php for each category id in a Mysql table. The function needs to check whether the directory's name (id) already exists before creating one.
How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个(为简单起见避免错误检查):
如果您仍然需要检查目录是否存在,您可以使用
stat
(或 lstat)函数。Try this (error checks avoided for simplicity):
If you still need to check whether directory exists or not, you can use
stat
(or lstat) function.