xxxxxxxxxx
<?php
header("Content-Type: application/json; charset=utf-8");
if (!empty($_REQUEST['q'])){
$q = $_REQUEST['q'];
require_once('api-key.php');
$apiUrl = "http://api.openweathermap.org/data/2.5/weather?q=" . $q . "&lang=fr&units=metric&APPID=" . API_KEY;
$response = file_get_contents($apiUrl, False);
$data = json_decode($response, true); // $data = TABLEAU PHP
setLocale(LC_TIME,"fr_FR.UTF-8");
date_default_timezone_set("Europe/Paris");
$today = strftime('%A %d %B %y',time());
$hour = date('H:i:s');
// on prépare un tableau $json pour la réponse
$json = array("lieu" => $q,
"jour" => $today,
"heure"=> $hour,
"meteo"=> array());
$json['meteo']['main'] = $data['main'];
$json['meteo']['description'] = $data['weather'][0]['description'];
$json['meteo']['id'] = $data['weather'][0]['id'];
echo json_encode($json,JSON_PRETTY_PRINT);
}
xxxxxxxxxx
$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data;
xxxxxxxxxx
function isJson($str) {
json_decode($str);
return json_last_error() === JSON_ERROR_NONE;
}
xxxxxxxxxx
function isJson($str) {
json_decode($str);
return json_last_error() === JSON_ERROR_NONE;
}
xxxxxxxxxx
{"data":[
{ "sub_data1":"value1", "sub_data2":"value2","sub_data_n":"value n" },
{ "sub_data2":"value2","sub_data2":"value2", "sub_data_n":"value n" },
{ "sub_data n":"value n ", "sub_data2":"value2","sub_data_n":"value n" }
]}
xxxxxxxxxx
function getJsonData(){
$var = get_object_vars($this);
foreach ($var as &$value) {
if (is_object($value) && method_exists($value,'getJsonData')) {
$value = $value->getJsonData();
}
}
return $var;
}
xxxxxxxxxx
<?php
$employmentInformation = [];
if ($payload->employment == NULL) {
$employmentInformation = [
"dates" => [
"start" => "N/A",
"end" => "N/A",
],
"position" => "N/A",
"department" => "N/A",
"salary" => [
"monthly" => "N/A",
"grade" => "N/A",
],
"appointment" => [
"status" => "N/A",
"governmentService" => "N/A",
],
];
} else {
$employmentInformation = json_decode($payload->employment);
}
?>