使用api验证数据

时间:2015-05-24 17:14:58

标签: php ajax api

我需要在客户端和服务器端(php)验证一些表单数据。我可以使用一些API Web服务来检查数据表单。问题是:我可以使用Ajax调用和我的API Web服务在客户端验证数据。如何从服务器端使用API​​ Web服务?

1 个答案:

答案 0 :(得分:0)

您可以使用file_get_contents来调用外部呼叫

$homepage = file_get_contents('http://www.example.com/');

然后你可以从网址发送参数

这里是将参数发送到api的示例

构造一个数组并将值置于验证

$getdata = http_build_query(
array(
 'name' => 'Francesco',
 'phone' => '2434343',
 'age'=>'23',
 'city'=>'MA',
 'state'=>'US'
 )
);

$opts = array('http' =>
    array(
        'method'  => 'POST',
        'header'  => 'Content-type: application/x-www-form-urlencoded',
        'content' => $getdata
    )
);

$context  = stream_context_create($opts);

然后直接将其发送到您的api

file_get_contents('http://example.com/send.php?'.$getdata, false, $context);