PHP - String Functions
What is the issue with this PHP code snippet?
$text = 'search here';
if (strpos($text, 'search')) {
echo 'Found';
} else {
echo 'Not found';
}
