You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
217 B
PHP

<?php
$str1 = 'The quick brown fox jumps over the lazy dog.';
if (strpos($str1,'jumps') !== false)
{
echo 'The specific word is present.';
}
else
{
echo 'The specific word is not present.';
}
?>