PHP code example of proximify / bibutils

1. Go to this page and download the library: Download proximify/bibutils library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

proximify / bibutils example snippets


namespace Proximify;

class Bibutils {
    public static read( array $options) : string
    public static convert( string $options) : string
}

public static Bibutils::read( array $options ) : string

public Bibutils::convert( array $options ) : string

use Proximify\Bibutils;

// Read an EndNote XML into MOD XML
$xml = Bibutils::read(['filename' => 'dev/data/bibtex/one_of_each.bib']);

// Load a RIS file and converted into a BibTex string
$bib = Bibutils::convert(['filename' => 'refs.ris', 'out' => 'bib']);