本文整理汇总了PHP中FileData::tags方法的典型用法代码示例。如果您正苦于以下问题:PHP FileData::tags方法的具体用法?PHP FileData::tags怎么用?PHP FileData::tags使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileData
的用法示例。
在下文中一共展示了FileData::tags方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Set base meta data and read the comment lines from the file head
*
* Usage example:
* <code>
* <?php
* $file = '/phpdoc/en/reference/array/functions/next.xml';
* $FDEn = new FileData($file, false);
* $file = '/phpdoc/de/reference/array/functions/next.xml';
* $FDTrans = new FileData($file, true);
* ?>
* </code>
*
* @param string $file File name to inspect
* @param bool $isTrans Define if the specified file is a translation
* @return void
*/
public function __construct($file, $isTrans)
{
self::$tags = implode('|', array('EN-Revision', 'Revision', 'Maintainer', 'Status', 'Credits', 'Rev-Revision', 'Reviewer'));
$this->isTranslation = (bool) $isTrans;
$this->data = array();
$handle = fopen($file, 'r');
for ($i = 0; $i <= 9 || feof($handle); ++$i) {
$rawFile = trim(fgets($handle));
switch (substr($rawFile, 0, 4)) {
case '<!--':
$this->setMetaData($rawFile);
break;
case '<?xm':
break;
default:
$i = 9;
break;
}
}
fclose($handle);
$this->data['size'] = round(filesize($file) / 1024, 0);
$this->data['mtime'] = filemtime($file);
clearstatcache();
return;
}