當前位置: 首頁>>代碼示例>>PHP>>正文


PHP file::find方法代碼示例

本文整理匯總了PHP中file::find方法的典型用法代碼示例。如果您正苦於以下問題:PHP file::find方法的具體用法?PHP file::find怎麽用?PHP file::find使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在file的用法示例。


在下文中一共展示了file::find方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: file_find

function file_find($dir, $find = '*')
{
    return file::find($dir, $find);
}
開發者ID:samplecms,項目名稱:package,代碼行數:4,代碼來源:_function.php

示例2: change_password

 public function change_password($id = null)
 {
     if (!is_null($id) && isset($_POST['new_password'])) {
         $file = new file();
         $file->find($id);
         $file->password = $_POST['new_password'];
         $file->save();
         $this->session->flash($this->l10n->__("La clave de acceso ha sido cambiada"));
         $this->redirect("files");
     }
 }
開發者ID:ravenlp,項目名稱:CodiceCMS,代碼行數:11,代碼來源:files_controller.php

示例3: read

 /**
  * 讀取所有日誌
  *
  * @param string $name   
  * @return  array
  */
 static function read($name = null)
 {
     if (static::$open === false) {
         return;
     }
     $dir = static::$path;
     if ($name) {
         $name = ucfirst($name);
         $dir = $dir . '/' . $name;
     }
     $list = file::find($dir);
     if ($list['file']) {
         foreach (array_reverse($list['file']) as $v) {
             $k = str_replace(static::$path, '', $v);
             $content = file_get_contents($v);
             $out .= "<h3>" . $k . "</h3>" . $content . "\n\n";
         }
     }
     return $out;
 }
開發者ID:samplecms,項目名稱:package,代碼行數:26,代碼來源:log.php


注:本文中的file::find方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。