douxian3828 2015-07-10 05:09
浏览 29
已采纳

如何从PHP数组创建Windows文件夹?

Hopefully someone can help me. I'm open to any suggestions, because this is my first time writing more than "Hello, World" with PHP. I am working on writing a commission web application that allows the user to login, and see a dynamic menu based on a list of PDF files in a user folder saved server side tied to their login. The PHP script I am writing should check the MySQL InnoDB database, run the weekly sales report, generate a PDF and then add that PDF to a directory (if the directory isn't created then it should create the folder for file insertion). I am using mPDF for the PDF and the creation and insertion works great, but I am struggling getting the mkdir to work with my array. It runs and then just generates a folder named Array. Here's what I have so far:

try {
//Create connection
$con = new PDO("mysql:host=$servername; dbname=$database", $username, $password);
$con->exec("SET CHARACTER SET utf8");

$query = "SELECT user_id FROM users;";
$result = $con->query($query);

foreach($result as $value) {
    $filename = './reports/'.$value.'';
    if(!file_exists($filename)) {
        if(!mkdir('./reports/'.$value.'')) {
            die('Failed to create folders...');
        }
    }
}

$con = null;
}
catch(PDOException $e1) {
    echo $e1->getMessage();
}
  • 写回答

2条回答 默认 最新

  • dongsi4815 2015-07-10 05:12
    关注

    $value is an array. Try with -

    /reports/'.$value['user_id']
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行