本文整理匯總了PHP中Symfony\Component\Finder\SplFileInfo::isReadable方法的典型用法代碼示例。如果您正苦於以下問題:PHP SplFileInfo::isReadable方法的具體用法?PHP SplFileInfo::isReadable怎麽用?PHP SplFileInfo::isReadable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Symfony\Component\Finder\SplFileInfo
的用法示例。
在下文中一共展示了SplFileInfo::isReadable方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: parse
/**
* Parse the contents of the file.
*
* Example:
*
* ---
* title: Title
* date: 2016-07-29
* ---
* Lorem Ipsum.
*
* @throws \RuntimeException
*
* @return $this
*/
public function parse()
{
if ($this->file->isFile()) {
if (!$this->file->isReadable()) {
throw new \RuntimeException('Cannot read file');
}
// parse front matter
preg_match('/' . self::PATTERN . '/s', $this->file->getContents(), $matches);
// if not front matter, set body only
if (!$matches) {
$this->body = $this->file->getContents();
return $this;
}
$this->frontmatter = trim($matches[1]);
$this->body = trim($matches[2]);
}
return $this;
}
示例2: fileInfo
/**
* Todas las propiedades de un archivo o directorio
*
* @param SplFileInfo $file Object of SplFileInfo
* @param string $path Ruta de la carpeta o archivo
* @return array|null Lista de propiedades o null si no es leible
*/
public function fileInfo($file, $path)
{
if ($file->isReadable()) {
$item = $this->fileDetails;
$item["filename"] = $file->getFilename();
$item["filetype"] = $file->getExtension();
$item["lastmodified"] = $file->getMTime();
$item["size"] = $file->getSize();
if ($file->isDir()) {
$item["filetype"] = '';
$item["isdir"] = true;
$item["urlfolder"] = $path . $item["filename"] . '/';
$item['preview'] = '';
} elseif ($file->isFile()) {
$thumb = $this->createThumb($file, $path);
if ($thumb) {
$item['preview'] = $this->config['url'] . $this->config['source'] . '/_thumbs' . $path . $thumb;
}
$item['previewfull'] = $this->config['url'] . $this->config['source'] . $path . $item["filename"];
}
return $item;
} else {
return;
}
}
示例3: isReadable
public function isReadable()
{
return $this->fileInfo->isReadable();
}