trim - Delete spaces php -


i need delete tags string , make without spaces.

i have string

"<span class="left_corner"> </span><span class="text">adv</span><span class="right_corner"> </span>" 

after using strip_tags string

" adv " 

using trim function can`t delete spaces.

json string looks "\u00a0...\u00a0".

help me please delete spaces.

solution of problem

$str = trim($str, chr(0xc2).chr(0xa0))


Comments

Popular posts from this blog

vb.net - Alternative to the T-SQL AS keyword -

php - MySQLi binding parameters in a prepared statement doesn't work unless inserted after "WHERE" -

ios - CFRelease causing crash in iPad application -