<!DOCTYPE html>
<html>
<body>
<?php
$str = "Visit W3School";
$pattern = "/w3school/i";
echo preg_match($pattern, $str);
?>
</body>
</html>