I have a function that returns an multidimensional array() I want to concatenate a string to every value of that array. How can I do this
for example my string:
$this->$string = 'helloAddMeToArray';
and my array is:
array(array('url' => 'PleaseAddAStringToMeIAmLonely'));
So i need my array value to be like this: helloAddMeToArrayPleaseAddAStringToMeIAmLonely
I tried concatenating these with '.' but does not allow me