我有一個MySQL數據庫,其中有一些帖子(帶有換行符)。在MySQL選擇後沒有換行符
我用這個語法選擇這些:
public function getById($id) {
$stmp = $this->_db->prepare("SELECT `content` FROM `posts` WHERE `id`= ?;");
$stmp->execute(array($this->id));
$row = $stmp->fetch(PDO::FETCH_ASSOC);
$this->content = $row['content'];
}
但這種方式我失去的換行符。有沒有一種方法可以選擇包含換行符的內容?
此致
LuxoJr
您不會失去換行符。您的瀏覽器可能只是忽略它們,因爲HTML想要有一個
而不是換行符。 –