如何爆裂数组元素以在文本区域中包含新行?

时间:2019-06-14 20:13:31

标签: php

我试图获取一个由链接组成的数组,并将其内嵌到字符串中,这些字符串将显示在文本区域中,以供用户复制。

这是数组的示例:

<?php
$links = array('https://google.com','https://yahoo.com','https://msn.com');

这是我尝试过的:

<?php
echo '<textarea>' . implode("\n", $links) . '</textarea>';
echo '<textarea>' . implode(PHP_EOL, $links) . '</textarea>';
echo '<textarea>' . implode("\r\n", $links) . '</textarea>';
?>

当我尝试使用“ \ n”创建一个字符串时,该字符串将在textarea的新行上输出数组中的每个链接,它们仍然以一个连续的字符串一起运行,如下所示:

https://google.comhttps://yahoo.comhttps://msn.com

关于如何获得预期结果的任何想法

https://google.com
https://yahoo.com
https://msn.com

0 个答案:

没有答案