index
:
kalassa.git
master
Unnamed repository; edit this file 'description' to name the repository.
Git user
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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
));