本文整理汇总了PHP中fs::safe_write方法的典型用法代码示例。如果您正苦于以下问题:PHP fs::safe_write方法的具体用法?PHP fs::safe_write怎么用?PHP fs::safe_write使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类fs
的用法示例。
在下文中一共展示了fs::safe_write方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: put
function put($raw_key, &$value, $group = 'default')
{
$key = $this->_normalize_key($raw_key);
$this->cache[$group][$key] =& $value;
$file = $this->_get_cache_file_path($group, $key);
fs :: safe_write($file, $this->_make_php_content($value));
}
示例2:
function test_safe_write()
{
fs :: safe_write(VAR_DIR . '/test', 'test');
$this->assertEqual('test',
file_get_contents(VAR_DIR . '/test'));
}
示例3:
function _save_cache()
{
$php = "<?php\n";
$php .= '$charset = "' . $this->charset . '";' . "\n";
$php .= '$group_values = ' . var_export($this->group_values, true) . ";\n";
$php .= "\n?>";
fs :: safe_write($this->cache_file, $php);
}