1 2 | $string = "test test test test"; echo preg_replace('[^\s]', '', $string); |
-
upload with new input
-
result: Success time: 0.02s memory: 13112 kB returned value: 0
<? $string = "test test test test"; preg_replace('[^\s]', '', $string); echo $string; ?>$string = "test test test test"; echo preg_replace('[^\s]', '', $string); -
result: Success time: 0.02s memory: 13112 kB returned value: 0
<? $string = "test test test test"; $a=preg_replace('[^\s]', '', $string); echo $a; ?>$string = "test test test test"; echo preg_replace('[^\s]', '', $string); -
result: Success time: 0.02s memory: 13112 kB returned value: 0
<? $string = "test test test test"; echo preg_replace('[^\s]', '', $string); ?>$string = "test test test test"; echo preg_replace('[^\s]', '', $string); -
result: Success time: 0.02s memory: 13112 kB returned value: 0
$string = "test test test test"; echo preg_replace('[^\s]', '', $string);



