aboutsummaryrefslogtreecommitdiff
path: root/test.php
diff options
context:
space:
mode:
Diffstat (limited to 'test.php')
-rw-r--r--test.php11
1 files changed, 3 insertions, 8 deletions
diff --git a/test.php b/test.php
index f6d51f7..9ef35df 100644
--- a/test.php
+++ b/test.php
@@ -1,15 +1,10 @@
<?php
require_once('bibtex.php');
-$bibtex = new BibtexParserGoga();
-$bibtex->read_file('example.bib');
-$bibtex->select(array(
- 'author' => '/pashev/',
- ));
+$bibtex = new BibtexParserTeam();
+$bibtex->read_file('1.bib');
+print $bibtex->export();
-print_r($bibtex->STRINGS);
-print_r($bibtex->SELECTION);
-
?>