Created
August 9, 2018 04:50
-
-
Save alpha1/5b22a290fe8cef998936778acd79b2b6 to your computer and use it in GitHub Desktop.
Append Character to each item on Array [PHP]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
foreach($input_array as &$value) { | |
$value = '`'. $value .'`'; | |
} | |
unset($value); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment