str_contains Ustal, czy ciąg zawiera dany podłoże
<?php
if (str_contains('abc', '')) {
echo "Checking the existence of the empty string will always return true";
}
?>
SAMER SAEID