Download the PHP package hashbang/reflib without Composer
On this page you can find all versions of the php package hashbang/reflib. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download hashbang/reflib
More information about hashbang/reflib
Files in hashbang/reflib
Download hashbang/reflib
More information about hashbang/reflib
Files in hashbang/reflib
Vendor hashbang
Package reflib
Short Description PHP module for managing a variety of citation reference libraries
License GPL-2.0
Homepage https://github.com/hash-bang/RefLib
Package reflib
Short Description PHP module for managing a variety of citation reference libraries
License GPL-2.0
Homepage https://github.com/hash-bang/RefLib
Please rate this library. Is it a good library?
Informations about the package reflib
RefLib
NOTICE: This module is depreciated in favour of the newer RefLib NPM. Please use that project instead.
PHP module for managing a variety of citation reference libraries.
At present this library can read/write the following citation library formats:
- EndNote (XML)
- RIS
- CSV files
- MEDLINE (PubMed .nbib)
Installation
The easiest way to install is via Composer - composer require hashbang/reflib
If you wish to install without composer then download the source code, unzip it into a directory include the file in the normal way.
Examples
Read in EndNote XML
require('reflib.php');
$lib = new RefLib();
$lib->SetContentsFile('tests/data/endnote.xml');
print_r($lib->refs); // Outputs all processed refs in an associative array
Write EndNote XML
require('reflib.php');
$lib = new RefLib();
$lib->SetContentsFile('tests/data/endnote.xml'); // Read in content (or populate $lib->refs yourself)
$lib->GetContents('EndNote File.xml'); // Output file to the browser
File conversion
require('reflib.php');
$lib = new RefLib();
$lib->SetContentsFile('tests/data/endnote.xml'); // Read in content (or populate $lib->refs yourself)
$lib->GetContents('EndNote File.ris'); // Output file to the browser in RIS format
All versions of reflib with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.0.0
The package hashbang/reflib contains the following files
Loading the files please wait ....