douben1891 2015-09-11 03:48
浏览 90
已采纳

PHP - String中的换行符不起作用

I have an array with strings. The strings shall have line breaks. My code produces the
as text not as tag. How can I manage to create a
tag in the HTML that creates a line break?

<?php return array(
  ....
  'subtitle'    => nl2br("My Sentence shall have a 
 line break right there") ,
 ...
);


 <title><?php echo htmlspecialchars($CONFIG['subtitle']); ?></title>

Result

   My Sentence shall have a <br> line break right there
  • 写回答

4条回答 默认 最新

  • donoworuq450547191 2015-09-11 04:06
    关注

    As most answers have suggested, remove the htmlspecialchars section. Also, your should be replaced with for environments that don't recognize only the . The updated code should look like below:

    <?php return array(
      ....
      'subtitle'    => nl2br("My Sentence shall have a 
     line break right there") ,
     ...
    );
    
    
     <title><?php echo $CONFIG['subtitle']; ?></title>
    

    Hope that helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部