1
次のeregiをpreg_matchに変換するにはどうすればよいですか?PHP 7 - eregiをpreg_matchに変換する
if (eregi("VERIFIED",$this->ipn_response)) {
// Valid IPN transaction.
$this->log_ipn_results(true);
return true;
} else {
// Invalid IPN transaction. Check the log for details.
$this->last_error = 'IPN Validation Failed.';
$this->log_ipn_results(false);
return false;
}
をあなたがもし 'てみました(するpreg_match( "/ VERIFIED/I"、の$ this - > ipn_response))' ? –