0

我已启用 Square-Connect Webhooks。我正在接收到我的服务器脚本的 POST。然而 $_POST 数组似乎是空的。

这是我的代码:

<?php
  $sRM = $_SERVER['REQUEST_METHOD'] ;
  $sH = null ;
  
  if ( 'PUT' == $sRM )
  {
    $sH = file_get_contents( 'php://input' ) ;
  }
  else if ( 'POST' == $sRM )
  {
    $sS = '' ;
    
    foreach( $_POST as $sK => $sV )
    {
      $sH .= $sK.'=>'.$sV ;
      $sS = ', ' ;
    }
  }
  
  if ( ConnectDB() )
  {
    $_SESSION[ 'DB' ]->real_escape_string( trim( $sH ) ) ;  //  Prevent SQL Injection
    $rR = $_SESSION[ 'DB' ]->query( 'INSERT INTO `Hooks` ( `Method`,`Message` ) VALUES ( "'.$sRM.'", "'.$sH.'" ) ;' ) ;
  }
?>

谢谢,罗伯

4

1 回答 1

3

方形文档声明 POST 正文将采用 JSON 格式,因此 PHP 不会像表单一样解析它并填充 $_POST 数组。你需要做这样的事情:

$json = file_get_contents('php://input');
$obj = json_decode($json);

使用 PHP 阅读 JSON POST的答案中所述。

于 2015-05-14T17:48:00.473 回答