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
Post a Comment