문제는 서버가 전체이었다이었다 : 아래
function smarty_core_write_file($params, &$smarty)
{
$_dirname = dirname($params['filename']);
if ($params['create_dirs']) {
$_params = array('dir' => $_dirname);
require_once(SMARTY_CORE_DIR . 'core.create_dir_structure.php');
smarty_core_create_dir_structure($_params, $smarty);
}
// write to tmp file, then rename it to avoid file locking race condition
$_tmp_file = tempnam($_dirname, 'wrt');
if (!($fd = fopen($_tmp_file, 'wb'))) {
$_tmp_file = $_dirname . DIRECTORY_SEPARATOR . uniqid('wrt');
if (!($fd = fopen($_tmp_file, 'wb'))) {
$smarty->trigger_error("problem writing temporary file '$_tmp_file'");
return false;
}
}
fwrite($fd, $params['contents']);
fclose($fd);
if (DIRECTORY_SEPARATOR == '\\' || !rename($_tmp_file, $params['filename'])) {
// On platforms and filesystems that cannot overwrite with rename()
// delete the file before renaming it -- because windows always suffers
// this, it is short-circuited to avoid the initial rename() attempt
unlink($params['filename']);
rename($_tmp_file, $params['filename']);
}
chmod($params['filename'], $smarty->_file_perms);
return true;
}
내가이 함수를 테스트하는 데 사용하는 코드입니다. 따라서 공간을 확보 한 후 코드는 정상적으로 작동합니다.
1) 무엇을 기대 했습니까? 코드에 오류 처리가 없습니다. 2)'$ params [ 'contents']'가 비어 있지 않음을 확인 했습니까? 3) 디버깅을 위해, 성가신'@'을 제거하십시오. –
예, 이것은 검증 된 텍스트를 작성하는 기능 일뿐입니다. $ params [ 'content']에는 데이터가 들어 있습니다. 실제로 이것은 캐싱 플러그인 코드 –
입니다. fopen 결과를 확인 했으므로 스트림이 있으므로 거기에 오류가 없습니다. $ params [ 'contents']는 비어 있지 않습니다. 나는 그 (것)들을 제거하는 것을 시도했다 그러나 그것은 doeesn't 변화 아무것도. 오류가 없습니다. –