core.write_file.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * write out a file to disk
  9.  *
  10.  * @param string $filename
  11.  * @param string $contents
  12.  * @param boolean $create_dirs
  13.  * @return boolean
  14.  */
  15. function smarty_core_write_file($params, &$smarty)
  16. {
  17.     $_dirname = dirname($params['filename']);
  18.     if ($params['create_dirs']) {
  19.         $_params = array('dir' => $_dirname);
  20.         require_once(SMARTY_CORE_DIR . 'core.create_dir_structure.php');
  21.         smarty_core_create_dir_structure($_params, $smarty);
  22.     }
  23.     // write to tmp file, then rename it to avoid
  24.     // file locking race condition
  25.     $_tmp_file = tempnam($_dirname, 'wrt');
  26.     if (!($fd = @fopen($_tmp_file, 'wb'))) {
  27.         $_tmp_file = $_dirname . DIRECTORY_SEPARATOR . uniqid('wrt');
  28.         if (!($fd = @fopen($_tmp_file, 'wb'))) {
  29.             $smarty->trigger_error("problem writing temporary file '$_tmp_file'");
  30.             return false;
  31.         }
  32.     }
  33.     fwrite($fd, $params['contents']);
  34.     fclose($fd);
  35.     // Delete the file if it allready exists (this is needed on Win,
  36.     // because it cannot overwrite files with rename()
  37.     if (file_exists($params['filename'])) {
  38.         @unlink($params['filename']);
  39.     }
  40.     @rename($_tmp_file, $params['filename']);
  41.     @chmod($params['filename'], $smarty->_file_perms);
  42.     return true;
  43. }
  44. /* vim: set expandtab: */
  45. ?>