Sven Mintel
Mitglied
So ginge es:
Code:
<?php
$text = 'heute schon geblitzdingst?';
echo preg_replace(
'@(.)@e',
"'<img src=\"img/font/'.ord('$1').'.png\" alt=\"'.htmlspecialchars('$1').'\" >'",
$text
);
?>