aboutsummaryrefslogtreecommitdiff
path: root/test.php
blob: f6d51f73872f93b6c64e53dc194dbc2cb09e7494 (plain)
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);

?>