html - PHP: multiple spaces in PHP implode -
i imploding array. instead of using "," or other delimiter 2 spaces.
how can accomplished?
i've tried:
<div>{implode(" ", $my_array)}</div> // condenses 1 space. <div>{implode(" ", $my_array)}</div> // prints out  . not use hashes in code.
note: not use # in nbsp. stackoverflow renders them spaces if don't :p
try "\t"
(a horizontal tab) or "   "
(two html spaces)
Comments
Post a Comment