Short if()-else in string

Fout:

wel een

Goed:

Dit is wel een test

Source:

<?
error_reporting
(E_ALL);

$string_error 'Dit is '.(TRUE) ? 'wel een' 'geen'.' test';

$string_good 'Dit is '.((TRUE) ? 'wel een' 'geen').' test';

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <title>Short if()-else in string</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
    <h1>Short if()-else in string</h1>
    
    <h2>Fout:</h2>
        <p><?=$string_error;?></p>
        
    <h2>Goed:</h2>
        <p><?=$string_good;?></p>
        
    <h2>Source:</h2>
    <?=highlight_file(__FILE__true);?>
</body>
</html>