CakeFest 2025 Madrid: The Official CakePHP Conference

Voting

: five minus zero?
(Example: nine)

The Note You're Voting On

shaman_master at list dot ru
5 years ago
Add prefix to strings:
<?php
substr_replace
($strings, '_prefix', 0, 0);
?>
Add suffix/postfix to strings:
<?php
substr_replace
($strings, '_suffix', array_map('strlen', $strings), 0);
?>

<< Back to user notes page

To Top