Strings & Patterns Learning Mode

You run the following PHP script:

<?php
$x = 'john';
echo substr_replace ($x, 'jenny', 0, 0);
?>