Paso 4: salida
Salida de impresión como JSON
echo json_encode(array("title"=>data));
así que el código total será
<? phpheader (' acceso-Access-Control-Allow-Origin: *'); para la aceptación de cualquier origen como localhost, other.header ('Content-Type: aplicación/json '); Jefe de escenario como JSON <?phpheader('Access-Control-Allow-Origin: *'); // for accepting any origin like localhost ,other.header('Content-Type: application/json'); //setting header as JSON $action = $_GET['action']; switch($action){ case "time": $data=time(); //inbuilt time function in php returns UNIX timestamp break;case "store"://Store another input in db or filebreak;}echo json_encode(array("result"=>$data));?>
así que cuando llames
yourdomain.com/API.php?action=Time
resultado será
{"resultado": "1440237956"}