Skip to content

Instantly share code, notes, and snippets.

View viking2917's full-sized avatar

Mark Watkins viking2917

View GitHub Profile
@hubgit
hubgit / marc-to-mods.php
Created April 24, 2012 16:54
Convert Harvard Library Bibliographic Dataset (MARC21) to MODS XML
<?php
require 'File/MARC.php';
$xsl = new DOMDocument;
$xsl->load('http://www.loc.gov/standards/mods/v3/MARC21slim2MODS3-4.xsl');
$xsltproc = new XSLTProcessor;
$xsltproc->importStylesheet($xsl);
$marcxml = new DOMDocument;