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