PHP ver gevorderde |
|
Met een reguliere expressie. Ik heb hem niet getest dus weet niet of hij werkt.
<?php
function handleOutput($sOutput)
{
return preg_replace('/$(.*?),-/', '&\\1,00', $sOutput);
}
ob_start('handleOutput');
?>
<?php function handleOutput($sOutput) { } ?>
|