Jump to content

php converts '@' to '-'


GerhardL

Recommended Posts

Hi.
I have this line of code:

$b = '@';

If I echo($b), then it displays correctly in the browser: '@'
But, when I look at $b on the server with the debugger, I find its value to be '& #8212;' (remove space)

If I use '@' in an email address - like [email protected] - it also changes to b& #8212;b.com (remove space)
So, although it echo correctly, it does not work in email addresses used to read user accounts.

1. Why does the value change?
2. Why is it changed to the html code of a dash (-) and not the html code of the '@' character?

I tried urlDecode() and str_replace() - but no success.

I use php 5.3.8

Thanx

Link to comment
https://forums.phpfreaks.com/topic/293755-php-converts-to/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.