本文分享下,我在实际工作中遇到的php中的双引号与单引号的一个问题,并附有解决方法,有需要的朋友,可以作个参考。
通过 PHP 过滤字符串中的换行符,通常会这样操作:
<?php $out = str_replace(array('\r\n', '\r', '\n'), '', $out); Nach dem Login kopieren <?php $out = str_replace(array("\r\n", "\r", "\n"), '', $out); heredoc: Nach dem Login kopieren <?php echo <<<EOT this is a "here document" example. just for test. EOT; Nach dem Login kopieren |