Сообщение от danik.js
|
Или вместо json можно .ini заюзать.
|
поясни, parse_ini_file читает файл, для записи функций родных нет
у функций file_get_contents, file_put_contents есть параметр $context, который позволяет передавать post, get и ...
$result = json_decode(file_get_contents(
$url,
false, // use_include_path
stream_context_create(array(
'http' => array(
'method' => 'GET',
'header' => "Content-Type: type=application/json\r\nX-Requested-With: XMLHttpRequest"
)
))
));
printf("<pre>%s</pre>", print_r($result, true));