ILIAS  release_8 Revision v8.24
class.ilBiblRisFileReaderWrapper.php
Go to the documentation of this file.
1<?php
2
19use LibRIS\RISReader;
20
26{
30 public function parseContent(string $content): array
31 {
32 $RISReader = new RISReader();
33 $re = '/\n|\r/m';
34 $content = preg_replace($re, RISReader::RIS_EOL, $content);
35 $RISReader->parseString($content);
36
37 return $RISReader->getRecords();
38 }
39}
Class ilBiblRisFileReaderWrapper.