Skip to content

Instantly share code, notes, and snippets.

@wilornel
Created August 14, 2012 03:17
Show Gist options
  • Select an option

  • Save wilornel/3346023 to your computer and use it in GitHub Desktop.

Select an option

Save wilornel/3346023 to your computer and use it in GitHub Desktop.
<?php
function replace($string){
substr_replace($string, 'aaaa', 5, 8);
}
$str = 'abcdefghijklmnopqrstuvwxyz';
replace($str);
echo $str; // returns: abcdefghijklmnopqrstuvwxyz
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment