示例#1
0
文件: Field.php 项目: scriptotek/marc
 public static function makeFieldObject(Record $record, $tag, $pcre = false)
 {
     $field = $record->getField($tag, $pcre);
     // Note: `new static()` is a way of creating a new instance of the
     // called class using late static binding.
     return isset($field) ? new static($field) : $field;
 }