PHP code example of loong / apistore-cloud
1. Go to this page and download the library: Download loong/apistore-cloud library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
loong / apistore-cloud example snippets
php
\ApiStore\facade\Http;
echo "<pre>";
try {
$ret = Http::setToken('')
->post('driveSearch/chat/Local/execute', [
'text' => '下午3:00HDHD99<返回学法减分考试?1234567891011121314151617181920剩余58S(单选题)18、如图所示,A车右转遇人行横道有行人通过,以下做法正确的是什么?A:保持较低车速通过B:停车让行,等行人通过后再通过C:确保安全的前提下绕行通过D:连续鸣喇叭冲开人群A下一题三<'
])->response();
print_r($ret->toArray());
} catch (\Throwable $th) {
echo $th->getMessage();
}
echo "</pre>";