第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

將 preg_match() 結(jié)果與 (bool) 一起使用?

將 preg_match() 結(jié)果與 (bool) 一起使用?

PHP
慕標(biāo)琳琳 2022-12-30 17:39:15
我想我會(huì)使用preg_match()with的結(jié)果(bool),但我不太確定。我覺得不清楚結(jié)果是不是true還是false。示例 1:if (((bool) preg_match($pattern, $string, $matches)) === true)示例 2:if (((bool) !preg_match($pattern, $string, $matches)) === true)示例 3:if (((bool) preg_match($pattern, $string, $matches)) === false)示例 4:if (((bool) !preg_match($pattern, $string, $matches)) === false)另一種想法是:有結(jié)果的事情將來也安全嗎0?1你有這方面的經(jīng)驗(yàn)嗎?你能報(bào)告什么?編輯 0:鑒于if沒有比較運(yùn)算符,問題得到了擴(kuò)展。0總是false和1總是true?_示例 5:if ((preg_match($pattern, $string, $matches)))示例 6:if ((!preg_match($pattern, $string, $matches)))這個(gè)對(duì)嗎?(preg_match($pattern, $string, $matches))= 0| 1(!preg_match($pattern, $string, $matches))= true| false不是!
查看完整描述

1 回答

?
30秒到達(dá)戰(zhàn)場(chǎng)

TA貢獻(xiàn)1828條經(jīng)驗(yàn) 獲得超6個(gè)贊

preg_match() 如果模式與給定主題匹配則返回 1,如果不匹配則返回 0,如果發(fā)生錯(cuò)誤則返回 FALSE。這是 3 個(gè)可能的答案。如果將其簡(jiǎn)化為布爾值 (true/false),則會(huì)丟失一些信息。


$result = (bool) preg_match($pattern, $string, $matches);

$result 如果模式匹配則為真,否則為假或發(fā)生錯(cuò)誤。


此 if 條件僅在 preg_match 返回 1 時(shí)執(zhí)行。


if (preg_match($pattern, $string, $matches)) {


}

如果不執(zhí)行可能不匹配或出錯(cuò)。


必須進(jìn)行嚴(yán)格比較才能區(qū)分所有 3 種變體:


$preg_match_result = preg_match($pattern, $string, $matches);


if($preg_match_result === 1) {

  //pattern matches


}

elseif($preg_match_result === 0) {

  //pattern not matches


}

else {

  //$preg_match_result === false   

  //an error occurred


}


查看完整回答
反對(duì) 回復(fù) 2022-12-30
  • 1 回答
  • 0 關(guān)注
  • 102 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)