2017-03-14 47 views
-1

變量,幷包含字符串()我要輸出的字符串:如何串連在PHP

Mango Meals (April Song) 

但我得到的字符串:

"Mango Meals (April Song)" 

如何將字符串和正確的PHP變量?

HTML

$title = $row[ 'title']; 
$credit = $row[ 'credit' ]; 
print('<div class = "album_title"> "'.$title.' ('.$credit.')" </div>'); 

回答

0

你只需要在字符串中刪除引號。

print('<div class = "album_title">'.$title.' ('.$credit.')</div>'); 
//        --^--     --^-- 
0

使用sprintf

echo sprintf('<div class = "album_title"> %s (%s)" </div>', $title, $credit); 

,這將是比逃避引號或連接字符串簡單。

0

變化這樣

echo '<div class ="album_title">'.$title.'('.$credit.')'.'</div>'; 
0

你有(HTML文本)內雙「引號字符串
嘗試沒有它

print('<div class = "album_title"> '.$title.' ('.$credit.') </div>');