Loại bỏ khoản trắng trong tiếng nhật mcjc.jp (ok)

https://stackoverflow.com/questions/13946518/strip-out-multi-byte-white-space-from-a-string-php

$keywords = ' ラメ単色';
$keywords = str_replace(array(' ', ' '), ' ', urldecode($keywords)); // outputs :'ラメ単色'

Last updated