str_contains Determine se uma string contém uma determinada substring
<?php
if (str_contains('abc', '')) {
echo "Checking the existence of the empty string will always return true";
}
?>
SAMER SAEID