IM有一些問題與此代碼在PHP的回聲,我想如果變量是否爲空,則顯示的圖像名「無registrado.png」錯誤的語法時才PHP代碼,我不能回顯varibale
<?php echo $registro ?: "no-registrado.png"; ?>
任何幫助理解
錯誤:行中/Republica-Dominicana/negocios.php 199
<img src="../imagenes/admin/<?php echo $registro ?; "no-registrado.png" ?>" Alt="Registrado" title="Registrado" width="20" height="20"/>
'<?php echo $ fax? $傳真:「未選中」; ?>' –
'<?php echo $ registro? $ registro:「no-registrado.png」?> –
我相信它是這樣的: '<?php echo $ fax? 「選中」:「未選中」; ?>' Pseudo: '? condition1:condition2' 'if(somethinghappens)print else printother' 另外,如果你想知道三元運算符是如何工作的,請檢查它:http://davidwalsh.name/php-shorthand-if-else-ternary-operators –