有谁知道这个错误意味着什么 致命:Autorisation 不再有效.704
当我尝试写入此文件时会发生这种情况,但权限设置为 755 和 0644 临时文件夹位于此子域的根文件夹中。
if ($handle = fopen( 'temp/mylog.log'"a+") )
{
if( !fwrite( $handle, $json ) )
{
throw new Exception("can't write to ...");
}
fclose( $handle );
}
谢谢,理查德