This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* $argc[0] - name of script | |
* $argc[1] - filename to work on | |
*/ | |
if ($argc != 2) { | |
echo "need at least one parameter: json file to work on\n"; | |
exit(1); | |
} |