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


PHP Ethna_Util::unlockFile方法代码示例

本文整理汇总了PHP中Ethna_Util::unlockFile方法的典型用法代码示例。如果您正苦于以下问题:PHP Ethna_Util::unlockFile方法的具体用法?PHP Ethna_Util::unlockFile怎么用?PHP Ethna_Util::unlockFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ethna_Util的用法示例。


在下文中一共展示了Ethna_Util::unlockFile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: _setConfig

 /**
  *  設定ファイルに書き込む
  *
  *  @access private
  *  @return mixed   0:正常終了 Ethna_Error:エラー
  */
 function _setConfig()
 {
     $file = $this->_getConfigFile();
     $lh = Ethna_Util::lockFile($file, 'w');
     if (Ethna::isError($lh)) {
         return $lh;
     }
     fwrite($lh, "<?php\n");
     fwrite($lh, sprintf("/*\n * %s\n *\n * update: %s\n */\n", basename($file), strftime('%Y/%m/%d %H:%M:%S')));
     fwrite($lh, "\$config = array(\n");
     foreach ($this->config as $key => $value) {
         $this->_setConfigValue($lh, $key, $value, 0);
     }
     fwrite($lh, ");\n");
     Ethna_Util::unlockFile($lh);
     return 0;
 }
开发者ID:riaf,项目名称:pastit,代码行数:23,代码来源:Config.php

示例2: _setConfig

 /**
  *  設定ファイルに書き込む
  *
  *  @access private
  *  @return mixed   0:正常終了 Ethna_Error:エラー
  */
 function _setConfig()
 {
     $file = $this->_getConfigFile();
     $lh = Ethna_Util::lockFile($file, 'w');
     if (Ethna::isError($lh)) {
         return $lh;
     }
     $fp = fopen($file, 'w');
     if ($fp == null) {
         return Ethna::raiseError("ファイル書き込みエラー[%s]", E_APP_WRITE, $file);
     }
     fwrite($fp, "<?php\n");
     fwrite($fp, sprintf("/*\n * %s\n *\n * update: %s\n */\n", basename($file), strftime('%Y/%m/%d %H:%M:%S')));
     fwrite($fp, "\$config = array(\n");
     foreach ($this->config as $key => $value) {
         $this->_setConfigValue($fp, $key, $value, 0);
     }
     fwrite($fp, ");\n?>\n");
     fclose($fp);
     Ethna_Util::unlockFile($lh);
     return 0;
 }
开发者ID:hiroki-namekawa,项目名称:test-upr,代码行数:28,代码来源:Ethna_Config.php


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