I have a situation where I am passing a string to a function. I want to convert   to " " (a blank space) before passing it to function. Does html_entity_decode does it?

If not how to do it?

I am aware of str_replace but is there any other way out?

link|improve this question

26% accept rate
1  
why don't you try it out yourself? that's the best way to learn it ;) – krike Jun 8 '11 at 7:18
I need a suggestion for it, so that I can try out. – Abhishek Sanghvi Jun 8 '11 at 7:19
feedback

3 Answers

YES

See PHP manual http://php.net/manual/en/function.html-entity-decode.php.

Carefully read the Notes, maybe that s the issue you are facing:

You might wonder why trim(html_entity_decode(' ')); doesn't reduce the string to an empty string, that's because the ' ' entity is not ASCII code 32 (which is stripped by trim()) but ASCII code 160 (0xa0) in the default ISO 8859-1 characterset.

link|improve this answer
feedback

Quote from html_entity_decode() manual:

You might wonder why trim(html_entity_decode(' ')); doesn't reduce the string to an empty string, that's because the ' ' entity is not ASCII code 32 (which is stripped by trim()) but ASCII code 160 (0xa0) in the default ISO 8859-1 characterset.

You can use str_replace() to replace the ascii character #160 to a space:

<?php
$a = html_entity_decode('>&nbsp;<');
echo 'before ' . $a . PHP_EOL;
$a = str_replace("\xA0", ' ', $a);
echo ' after ' . $a . PHP_EOL;
link|improve this answer
feedback

html_entity_decode does convert   to a space, just not a "simple" one (ASCII 32), but a non-breaking space (ASCII 160) (as this is the definition of  ). If you need to convert to ASCII 32, you still need a str_replace(), or, depending on your situation, maybe a

preg_match("/s+", ' ', $string) 

to convert all kinds of whitespace to simple spaces.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.