私は400不正な要求を返信2つのJSON源とそれらのいずれかを持っている は、だから私は私のPHPコードは、両方のサーバーの答えを確認することを望む(サーバ内の電荷の依存)と作業を選択1PHP - 検出悪い要求
<?php
$server1 = 'server1.lan'
$server2 = 'server2.lan'
/*
Here a code to check and select the working server
*/
$json=file_get_contents('https://'.$workingServer.'/v1/data?source='.$_GET['source']);
$data = json_decode($json);
if (count($data->data)) {
// Cycle through the array
foreach ($data->data as $idx => $data) {
echo "<p>$data->name</p>\n";
?>
ありがとうございます!