18 lines
333 B
PHP
18 lines
333 B
PHP
<?php
|
|
|
|
|
|
$ch = curl_init("http://worldtimeapi.org/api/timezone");
|
|
$fp = fopen("example_homepage.txt", "w");
|
|
|
|
curl_setopt($ch, CURLOPT_FILE, $fp);
|
|
curl_setopt($ch, CURLOPT_HEADER, 0);
|
|
|
|
$output = curl_exec($ch);
|
|
|
|
curl_close($ch);
|
|
fclose($fp);
|
|
|
|
header();
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
echo json_encode($data); |