(PCC)::[How-to-Search-for-a-specific-text-within-a-string-using-strpos()-function-in-php-]::[php]
<!DOCTYPE html> <html> <body> <?php echo strpos("Hello world!", "world"); ?> </body> </html>