7 lines
251 B
PHP
7 lines
251 B
PHP
<?php
|
|
require_once('fixed/config/go_con.php');
|
|
access(50);
|
|
|
|
$str = file_get_contents('./file_test.json');
|
|
$json = json_decode($str, true); // decode the JSON into an associative array
|
|
echo '<pre>' . print_r($json, true) . '</pre>'; |