1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php require_once('bibtex.php'); $bibtex = new BibtexParserGoga(); $bibtex->read_file('example.bib'); $bibtex->select(array( 'author' => '/pashev/', )); print_r($bibtex->STRINGS); print_r($bibtex->SELECTION); ?>