0
$args = array(
'name' => 'test',
'description' => 'xxxx',
'start_time' => 'xxxx',
'end_time' => 'xxxxx'
); 
$target_url = "https://graph.facebook.com/me/events";

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
$result = curl_exec($ch);
curl_close($ch);

退货

 {"id":"xxxx"}

我希望这个 id 在 php 中作为 $id 所以我也可以进一步使用它.. 谢谢。

4

3 回答 3

3

你会使用json_decode这个,看看这个例子:

$Object = json_decode($result);
$id = $Object->id;

echo $id; //return: xxxx

您总是可以只使用 $Object->id 来代替将其重置为 $id 变量,但这并不重要。

json_decode()文档:http ://us2.php.net/json_decode

于 2012-11-29T14:21:11.433 回答
0

我不确定是否理解您在说什么,但如果您要求一种方法来检索您的id的值,您可以随时执行以下操作

$_GET["id"] if GET Request was sent

$_POST["id"] if POST Request was sent
于 2012-11-29T14:21:35.473 回答
0
<?php
$obj = json_decode($result);
$id = $obj->id;
echo $id;
?>
于 2012-11-29T14:22:42.007 回答