知識(shí)付費(fèi)使用PHP7.2以上版本時(shí)h5支付寶支付報(bào)錯(cuò)
系統(tǒng)錯(cuò)誤
The each() function is deprecated. This message will be suppressed on further calls
原因:PHP7.2廢除了each()函數(shù)
解決:找到AopClient.php文件 buildRequestForm方法中 each修改為forcach
foreach($para_temp as $key=>$val){ if (false === $this->checkEmpty($val)) { //$val = $this->characet($val, $this->postCharset); $val = str_replace("'","'",$val); //$val = str_replace("\"",""",$val); $sHtml.= "<input type='hidden' name='".$key."' value='".$val."'/>"; } }
下圖為需要修改的位置