Voting

: three plus six?
(Example: nine)

The Note You're Voting On

yeyijelud at amadamus dot com
6 years ago
First Example can be simplified =>

$input = array('A: XXX', 'B: XXX', 'C: XXX');

substr_replace($input, 'YYY', -3);

output: Array ( [0] => A: YYY [1] => B: YYY [2] => C: YYY )

<< Back to user notes page

To Top