PHP and replacing Euro signs
Within PHP it can be bit of a pain when you want to replace euro signs that come from a database query.
This problem mostly has to do with different encodes of text. It’s very hard to covert an euro sign with a hard “€” within your replace code. I came across this problem a lot of times. This website covers the euro sign regarding different codes on different platforms.
I found using the chr function can be very successful. The following code has proven itself to be work on different websites to replace a euro signs within a ISO String:
For UTF-8:
Thanks for reading.