TEMP : remove print_r, try with a foreach
continuous-integration/drone/push Build is passing Details

master
dorian.hodin 2 years ago
parent d309aa5442
commit b58fbc4bdb

@ -40,7 +40,9 @@ try{
} }
} }
$temp = array('response' => "Rien", 'test' => "Test Ici"); $temp = array('response' => "Rien", 'test' => "Test Ici");
$response->getBody()->write(json_encode(print_r($temp,true))); foreach ($temp as $rep) {
$response->getBody()->write(json_encode($rep));//'"'.$key.'": "'.$value.'"');
}
//return $response; //return $response;
return $response->withHeader('Content-type', 'application/json'); return $response->withHeader('Content-type', 'application/json');
}); });

Loading…
Cancel
Save