- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
<?php
function chrs($poc)
{
return base64_encode($poc[1]);
}
function callback($sel,$find, $to,$str){
switch($sel) {
case 1:
return str_ireplace($find,$to,$str) ;
break;
case 2:
return substr($str,$find,$to) ;
break;
case 3:
return preg_replace($find,$to,$str) ;
break;
case 4:
return preg_replace_callback($find,$to,$str) ;
break;
}
}
echo callback(1,'you','fuck', 'You my pet').'<br/>';;
echo callback(2,'0','5', 'You my pet').'<br/>';
echo callback(4,'/(\S)/s','chrs', 'You my pet pet').'<br/>';
?>