本文整理汇总了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);
}
示例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");
}
}
示例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;
}