summaryrefslogtreecommitdiff
path: root/tests/code/str-replace.php
blob: f02f25e2d78d1c61c1a5c8a09b7c1e021b72f235 (plain)
1
2
3
4
5
<?php

$arr = ['welcome', 'hello', 'goodbye'];

print_r(str_replace('e', '@', $arr));