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

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

從字符串中讀取預(yù)定義值 (PHP)

從字符串中讀取預(yù)定義值 (PHP)

PHP
月關(guān)寶盒 2023-07-07 10:46:32
PHP,我想讀出字符串中的特定值,并返回其值:predefined Values: '=', '>', '<', '>=', '<=';String1 to Search for: "email = test@gmail.com"         //return =String2 to Search for: "age > 20"                       //return >有人知道獲得這些值的最簡(jiǎn)單方法嗎?如果對(duì)于數(shù)組有更好的解決方案,也請(qǐng)告訴我。
查看完整描述

3 回答

?
jeck貓

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

我認(rèn)為 ju 應(yīng)該使用 strpos ( string $haystack , mix $needle [, int $offset = 0 ] ) 。

就像 if(strpos("email = test@gmail.com",'=' ) === false ) { 不執(zhí)行任何操作 } else { 執(zhí)行某些操作 }


查看完整回答
反對(duì) 回復(fù) 2023-07-07
?
慕妹3242003

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

你可以使用正則表達(dá)式


if(preg_match('^(?<left>\w+?) (?<operator>[=><]=?) (?<right>\w+?)$', $string, $matches)) {

    var_dump($matches)

}


//will output

Array

(

    [0] => email = test@gmail.com

    [left] => email

    [1] => email

    [operator] => =

    [2] => =

    [right] => test@gmail.com

    [3] => test@gmail.com

)

所以你可以簡(jiǎn)單地$matches['left']計(jì)算方程的左邊部分。$matches['right']對(duì)于正確的部分,你的操作員是$matches['operator']


查看完整回答
反對(duì) 回復(fù) 2023-07-07
?
慕碼人2483693

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

我想我找到了解決方案:


$arrayz = str_split($string);

$operatorsarr = array('=', '>', '<', '>=', '<=');

$matches = array_intersect($arrayz, $operatorsarr);


foreach ($matches as $op){

                

        $operator = $op;     //*there is only one operator per String     

}


查看完整回答
反對(duì) 回復(fù) 2023-07-07
  • 3 回答
  • 0 關(guān)注
  • 147 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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