Skip to content

Instantly share code, notes, and snippets.

View KennethRMason's full-sized avatar

Ken Mason KennethRMason

  • Orange County, CA
View GitHub Profile
@iamamused
iamamused / plist2json.php
Created July 24, 2012 15:47
PList to JSON Converter
<?php
function plist2json($child) {
switch($child->nodeName) {
case 'dict':
$d = new StdClass();
$nodes = $child->childNodes;
for($i = 0; $i < $nodes->length; $i++){
if ($nodes->item($i)->nodeName == 'key'){
$key = $nodes->item($i)->textContent;