Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一个非常新的 PHP 程序员。目前,我在页面上有一个文本框,人们应该在其中将 URL 输入文本框中,每个 URL 位于单独的行中,如下所示:
www.microsoft.com www.msn.com www.yahoo.com
我想从该文本框中提取链接并将它们作为单独的条目输入到数据库中。我怎样才能做到这一点?我什至不确定从哪里开始编写脚本。
要将链接提取到数组中,您可以执行以下操作:
$links = Explode ( "\n", $_POST['textbox'] );
这将返回一个数组,其中每个链接作为数组的一个元素,然后您可以简单地循环遍历该数组并将链接插入数据库。