以下是一個(gè)簡單的PHP快遞查詢源碼示例:
<!DOCTYPE html>
<html>
<head>
<title>快遞查詢</title>
</head>
<body>
<form method="post" action="">
<input type="text" name="express_number" placeholder="請輸入快遞單號(hào)">
<input type="submit" name="submit" value="查詢">
</form>
<?php
if(isset($_POST['submit'])){
$express_number = $_POST['express_number'];
$url = "https://api.kuaidi100.com/api?id=您的快遞100授權(quán)key&com=快遞公司代號(hào)&nu=".$express_number."&show=2&muti=1&order=desc";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 跳過證書檢查
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); // 從證書中檢查SSL加密算法是否存在
$output = curl_exec($ch);
curl_close($ch);
$result = json_decode($output, true);
if($result['status'] == 200){
foreach($result['data'] as $item){
echo $item['time'].' '.$item['context'].'<br>';
}
}else{
echo '查詢失敗';
}
}
?>
</body>
</html>
請注意,上述代碼中的"您的快遞100授權(quán)key"和"快遞公司代號(hào)"需要替換為您自己的快遞100授權(quán)key和快遞公司代號(hào)。您可以在快遞100官網(wǎng)注冊一個(gè)開發(fā)者賬號(hào)并獲取相應(yīng)的授權(quán)key和快遞公司代號(hào)。
此外,為了獲取快遞查詢結(jié)果,上述代碼使用了curl
庫來發(fā)送HTTP請求。請確保您的PHP環(huán)境已經(jīng)安裝并啟用了curl
庫。
在頁面中,用戶可以輸入快遞單號(hào)并點(diǎn)擊"查詢"按鈕,然后代碼會(huì)調(diào)用快遞100的API查詢快遞信息,并將查詢結(jié)果顯示在頁面上。