第一種是正則:php
<?php echo preg_replace('# #', '', 'ab ab'); //input "abab" ?>
第二種使用str_replace()函數:web
<?php echo str_replace(' ', '', 'ab ab'); //input "abab' ?>
第三種使用strtr()函數:函數
<?php echo strtr('ab ab', array(' '=>'')); // input "abab" ?>
strtr()函數使用上有點特別,實質上:.net
<?php strtr('ewb', 'web', '123') == strtr('ewb', array('e '=> '2', 'w' => '1', 'b' => '3')) == str_replace(array('e', 'w', 'b'), array('2', '1', '3'), 'ewb'); ?>