在Windows服务器中使用php中的fopen读写json文件

时间:2013-09-05 15:22:03

标签: php windows-server

这是下面的代码,

$posts= array(array(
        'name'=> $v1t1,
        'y'=> $principal,
        'color'=> $v1c1              
        ),
        array(
             'name'=> $v2t2,
             'y'=> $mi,
             'color'=> $v2c2                 
          ),

          array(
             'name'=> $v5t5,
             'y'=> $insurance,
             'color'=> $v5c5                 
          )
    );

$response = $posts;

$fp = fopen('conv_results.json', 'w');
fwrite($fp, json_encode($response));
fclose($fp);

此代码在localhost和linux服务器上完美运行。

但在Windows服务器中,它显示错误

  

警告:fopen(fha_results.json)[function.fopen]:无法打开流:第63行的E:\ kunden ...... \ FHA_Json_HC.php中的权限被拒绝。

请帮助我,我该如何解决?

0 个答案:

没有答案