已采納回答 / 想死在湖邊
$array ? ? = $array($timestamp,$nonce,$token);應該寫成$array ? ? = array($timestamp,$nonce,$token);第二個array多了一個$符號
2016-09-01
<?php
$timestamp = $_GET['timestamp'];
$nonce = $_GET['nonce'];
$token = 'weixin';
$signature = $_GET['signature'];
$timestamp = $_GET['timestamp'];
$nonce = $_GET['nonce'];
$token = 'weixin';
$signature = $_GET['signature'];
2016-08-19