-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestparse2.php
More file actions
35 lines (24 loc) · 855 Bytes
/
Copy pathtestparse2.php
File metadata and controls
35 lines (24 loc) · 855 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
31
32
33
34
35
<pre>
<?php
require("Bibitem.php");
$bibitem = new Bibitem;
$bibitem->set('@Book{*,
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 = {QualäöüÄÖÜitative} # {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->parse();
print_r($bibitem->mKeys);
print_r($bibitem->mValues);
print_r($bibitem->mOrigValues);
print "X\n\n";
?></pre>