Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
PHP Word Censorship
SUBMITTED BY:
Guest
DATE:
June 12, 2013, 2:06 p.m.
FORMAT:
PHP
SIZE:
457 Bytes
Raw
Download
Tweet
HITS:
953
Go to comments
Report
<?php
function
censorWords
(
$text
){
$find
=
array
(
'/damn/i'
,
'/shit/i'
,
'/fuck/i'
);
$replace
=
array
(
'dang'
,
'shoot'
,
'frick'
);
return
preg_replace
(
$find
,
$replace
,
$text
);
}
$text
=
'That Damn cat is fucking stupid.'
;
echo
censorWords
(
$text
);
?>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus