-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestparse.php
More file actions
30 lines (21 loc) · 799 Bytes
/
testparse.php
File metadata and controls
30 lines (21 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
require("Bibitem.php");
print "X\n\n";
$bibitem = new Bibitem;
$bibitem->set('@Book{Strauss.etal:1996,
author = {Strauss, Anselm L. and Corbin, Juliet},
title = {{Grounded Theory: Grundlagen qualitativer Sozialforschung}},
address = {Weinheim},
publisher = {Beltz, Psychologie-Verlag-Union},
pages = 227,
isbn = {3-621-27265-8},
year = 1996,
keywords = {Qualitative Sozialforschung},
hardcopylocation = {1. Einleitung: Ordner~12; 5. Offenes Kodieren: Ordner~12; 6. Techniken zum Erh{\"o}hen der theoretischen Sensibilit{\"a}t: Ordner~12; 7. Axiales Kodieren: Ordner~12; 8. Selektives Kodieren: Ordner~12},
bibdate = {20.04.2006},
}
');
$bibitem->parseEntry();
print_r($bibitem->mValues);
print "X\n\n";
?></pre>