使用file_get_contents在PHP中工作时休息POST API

时间:2018-02-21 07:23:52

标签: php

我正在编写新的php post api如何获得输出。

网址:http://localhost/webservices/test.php

目前我正在使用邮递员进行开发。当我收到json的请求时,我能够处理。

JSON示例请求:

{"firstName":"Ram","lastName" :"R"}

$request  = file_get_contents('php://input');
$parameters = json_decode($request,true);

$firstName = $parameters['firstName'];
echo $firstName ; // output will be Ram

现在我的问题是如何从Request Like This

获得回应
firstName=Ram&lastName=R

现在如何获得名字?

提前致谢。

1 个答案:

答案 0 :(得分:1)

您可以使用以下方法从标题中获取值。

$fname   = $_GET['firstName'];
echo $fname;

您的网址将如下:

http://localhost/webservices/test.php?firstName=Ram&lastName=R