Skip to content

hash-bang/PHP-EndNote

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP-EndNote

Simple PHP library for reading and writing EndNote XML files.

NOTE: This library has now been incorporated into the RefLib project.

This GitHub page is maintained so dependencies don't break.

Example: Read in EndNote XML

require('endnote.php');
$endnote = new PHPEndNote();
$endnote->SetXMLFile('an-endnote-file.xml');

print_r($endnote->refs); // Outputs all processed refs in an associative array

Example: Write EndNote XML

require('endnote.php');
$endnote = new PHPEndNote();
$endnote->SetXMLFile('an-endnote-file.xml'); // Read in content (or populate $endnote->refs yourself)
$endnote->OutputXML('EndNote File.xml'); // Output file to the browser

About

Simple library to read and write EndNote XML files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages