|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-07-01 15:08 UTC] tony2001@php.net
[2005-07-08 11:02 UTC] vrana@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 26 10:00:01 2025 UTC |
Description: ------------ Whenever I use the function htmlentities, it doesn't replace whitespace characters to ' ', although this replacement is present in the functions translation table. Reproduce code: --------------- $str = " "; $str = htmlentities($str); print "'$str'"; Expected result: ---------------- ' ' Actual result: -------------- ' '