Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie lege ich ein Standardbild (no_pic.gif) in PHP fest?

Normalerweise mache ich das so

<td><img src="<?= @$location ? $location : 'default/image.gif' ?>" width="100" height="100" /></td>

Auf diese Weise, wenn $location nicht existiert, unterdrückt es den Fehler und gibt die Standardersetzung aus.