<!DOCTYPE html>
<html>
<body>
<?php
echo $str = "This is nice";
substr_count($str,"is",3,9);
?>
</body>
</html>