W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
如果請(qǐng)求來(lái)自命令行調(diào)用,則請(qǐng)求對(duì)象實(shí)際上是 CLIRequest
。它的行為與常規(guī)請(qǐng)求相同, 但為方便起見(jiàn)添加了一些訪(fǎng)問(wèn)器方法。
getSegments()
返回被視為路徑一部分的命令行參數(shù)數(shù)組:
// command line: php index.php users 21 profile -foo bar
echo $request->getSegments(); // ['users', '21', 'profile']
getPath()
以字符串形式返回重建的路徑:
// command line: php index.php users 21 profile -foo bar
echo $request->getPath(); // users/21/profile
getOptions()
返回被視為選項(xiàng)的命令行參數(shù)數(shù)組:
// command line: php index.php users 21 profile -foo bar
echo $request->getOptions(); // ['foo' => 'bar']
getOption($which)
返回被視為選項(xiàng)的特定命令行參數(shù)的值:
// command line: php index.php users 21 profile -foo bar
echo $request->getOption('foo'); // bar
echo $request->getOption('notthere'); // NULL
getOptionString()
返回選項(xiàng)的重構(gòu)的命令行字符串:
// command line: php index.php users 21 profile -foo bar
echo $request->getOptionPath(); // -foo bar
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話(huà):173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: