Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
It's still € in the string - it just displays in the browser as €. You'll need to split on € instead.
€
$data = explode("€", $data);
tried it with simple php dom parser... it works :)