・コードを書き換えるのは面倒なので、str_contains関数が無い場合は、関数を定義するという対応を行った。
・ここで使用したのが、function_exists関数である。
使い方
・str_contains関数が無かったら作成するコード
if(!function_exists("str_contains")){
function str_contains($target, $check){
if (strpos($target, $check) !== false) {
return true;
}else{
return false;
}
}
}
参考
https://www.php.net/manual/ja/function.function-exists.php
https://newbedev.com/php-str-contains-php-7-code-example