So "This is an example" ... would become "£This !is $an ^example"
I have already found an article that explains adding characters http://www.canbal.com/view.php?sessioni ... 2BqRbak%3D
And so far have the basics of:
Code: Select all
$my_array = array("!", "£", "$", "%", "^", "&");
$str = 'This is an example of a sentence';
$str = $random . implode(' ' . $random ,explode(' ',$str));Would appreciate any help