<!DOCTYPE html>
<html>
<body>
<?php
$str = "Hello World!";
echo $str . "<br>";
echo chop($str,"World!");
?>
</body>
</html>