当PHP被禁用的PHP函数:tempnam()后
程序员文章站
2024-02-07 16:46:52
...
当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);
传回字串就是建立的临时档名。若发生错误则传回空字串。
而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);
上一篇: Oracle数据库管理员的职责
下一篇: 40个迹象表明你还是PHP初学者
推荐阅读
-
当PHP被禁用的PHP函数:tempnam()后
-
PHP使用strstr()函数获取指定字符串后所有字符的方法,strstr字符串_PHP教程
-
php 怎么确保两个函数被调用的顺序
-
当PHP被禁用的PHP函数:tempnam()后
-
php被遗忘的一些功能强大的字符串处理函数
-
php 升级到 5.3+ 后出现的一些错误,如 ereg(); ereg_replace(); 函数报错_php实例
-
php检测网页是否被百度收录的函数代码_PHP
-
PHP 5.4中的新特性及被弃用的功能函数总结
-
php 怎么确保两个函数被调用的顺序_PHP教程
-
一些需要禁用的PHP危险函数(disable_functions)_PHP