警告:file_put_contents:无法打开流:没有这样的文件或目录

时间:2017-03-18 05:23:24

标签: php

我正在使用facebook graph api,在我的代码中我想在我的数据库中存储用户个人资料图片网址&图像存储在我的数据库文件中,它可以找到源文件也显示它但它不能存储图像我的数据库。错误说:

else if (src == parent.buttonSquareRt) {
    selectedAction = 's';
    currentResult = displayValue;
    parent.displayField.setText("sqrt(" + currentResult + ")");
}

我的源代码如下所示:

file_put_contents(celebrity_u_look_alike/youtube_star/fb_user_image/img_1264053943663652.png): failed to open stream: No such file or directory in /home/smartcarsassocia/public_html/celebrity_u_look_alike/youtube_star/youtube_star.php on line 101

1 个答案:

答案 0 :(得分:1)

这是因为:

file_put_contents($path1, $image_file );

您在$path1中提供的路径在物理上不存在。因此请确保该目录存在。如果没有,则使用mkdir()函数创建它。