I have to use php 7.3.x for a website, but I have a file that uses the strpos function. Is there a solution to use this function or is there a replacement in php 7 for this function?
this is my code
if(strpos($text, $data['word']) !== false) {
if($data['data']['type'] == 'forward') {
$ret = forwardMessage($chat_id,
$data['data']['from_id'],
false,
$data['data']['message_id']);
}
thank you.