當PHP被禁用的PHP函數:tempnam() 後,tempnam()可建立一個臨時檔,檔名不會與同目錄中的檔案重覆。
傳回字串就是建立的臨時檔名。若發生錯誤則傳回空字串。
而smarty運行就必須在類似templates_c的設置編譯目錄,然後運行後它會自動創建類似%%
43^43B^43B32F4B%%index.htm.php的臨時檔,所以,tempnam()被禁用後,當然不能自動創建類似%%
43^43B^43B32F4B%%index.htm.php的臨時檔,自然自動創建類似%%
43^43B^43B32F4B%%index.htm.php的臨時檔,是一片空白.
smarty中使用tempnam函數的程序是internals/core.write_file.php,如下代碼:
PHP代碼:-----------------------------------------------------------------------
// 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);