forked from kamba4/sunders
10 lines
261 B
PHP
10 lines
261 B
PHP
<?php
|
|
// Convert the content of a JSON file to a PHP array.
|
|
function getDecodedJSON($jsonPath) {
|
|
$handle = fopen($jsonPath, 'r');
|
|
$jsonContent = fread($handle, filesize($jsonPath));
|
|
fclose($handle);
|
|
|
|
return json_decode($jsonContent);
|
|
}
|
|
?>
|