用PHP编写二进制文件

时间:2012-07-05 09:30:05

标签: php file-io io binaryfiles

我写了一个PHP文件,它将JPEG文件保存在服务器中,部分代码如下:

    //create folder if folder not exist
if (!is_dir($save_path)){

    $old = umask(0);
    $flag = @mkdir($save_path,0777);
    umask($old); 

if(isset($flag)){
    $string = 'Folder Create Success!'."\n";
}else{
    $string= 'Folder Create Fail!'."\n";
}
echo $string;

}else{

   echo "Folder exist!!!!";

}


//write the content to the server
$base=$_REQUEST['image'];
$binary=base64_decode($base);
header('Content-Type: image/jpg; charset=utf-8');

if(!$file = fopen($path, 'wb')){

    echo 'Image upload Fail!'."\n";
    return;
}
else
{

    fwrite($file, $binary);
    fclose($file);

}

问题是当我运行代码时,如果文件夹不存在,它只创建文件夹,但内容无法保存在文件夹中。错误消息是:

[Thu Jul 05 16:59:06 2012] [错误] [客户端10.95.61.220] PHP警告:fopen(/mnt/csis/upload/newphoto/others/12346_test/12346_test_2012-07-05_others_abc.jpg):无法打开流:第57行/var/www/html/upload_image.php中的权限被拒绝

但是,如果我再次运行代码,因为该文件夹是在过去创建的,它可以正常工作。内容可以保存在文件夹中......

我出错了什么?我试着在网上找到答案,但仍无法解决问题。

任何人都可以提供帮助,非常感谢!

1 个答案:

答案 0 :(得分:0)

我会尝试更改文件夹的创建以使用recursive flag

$flag = @mkdir($save_path . "/" . $file,0777,true);