当前位置: 首页>>代码示例>>PHP>>正文


PHP fs::safe_write方法代码示例

本文整理汇总了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));
  }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:10,代码来源:cache_registry.class.php

示例2:

 function test_safe_write()
 {
   fs :: safe_write(VAR_DIR . '/test', 'test');
   $this->assertEqual('test',
                      file_get_contents(VAR_DIR . '/test'));
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:6,代码来源:fs_test.class.php

示例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);
  }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:9,代码来源:ini.class.php


注:本文中的fs::safe_write方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。