我想發送來自ftp接口的特定請求的字符串響應。我正在使用以下代碼..如何發送字符串響應php
if($s == 'Successfull') {
$rid = 's'.$request_id;
}
if($s == 'Unsuccessfull') {
$rid = 'e'.$request_id;
}
echo "<b style='font-size: 16px;color:#59AB8F;'>Your Request ID:".$rid.".......<b>\n";
printf("<br>");
header($rid);
成功*。什麼是'header($ rid)'應該完成?這應該是一個API類似的迴應? – Devon
我沒有看到任何東西在這裏..給一些更多的細節。 –
我發現它從網絡,我們可以像字符串('http response')字符串請求。這裏的請求ID是.. $ request_id = $ date-> getTimestamp(); –