Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバー(a)には、タスクが完了すると、次のような配列を返すスクリプトがあります。
Array ( [1372888] => 3 - 0 [1340712] => 0 - 0 );
この配列をサーバー (b) に渡す必要があります。
json を使用してデータを渡すことができます。
サーバー A:
$array = array("1372888" => "3 - 0", "1340712" => "0 - 0") $passArray = json_encode($array) ; /// Send
サーバー B:
// Receive data: $array = json_decode($array,true);