程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 當PHP被禁用的PHP函數:tempnam()後

當PHP被禁用的PHP函數:tempnam()後

編輯:關於PHP編程

 

當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);


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved