将大量信息放入SQL数据库的更好方法,而不是查询URL

时间:2014-07-15 09:32:02

标签: php mysql bash

我设置了一个简单的php脚本,通过以下URL查询将信息放入MySQL数据库:

https://www.thesite.com/addinformation.php?WHERE_TO_LABEL_IT_AS&WHAT_TEXT_TO_ADD

我只是使用wget

从bash中调用它
wget --no-check-certificate --user=username --password='password' --delete-after https://www.thesite.com/addinformation.php?$LABELVARIABLE&$STRINGVARIABLE"

它适用于我的需求,但我现在想用类似的方法将大块文本添加到数据库中。甚至可能是整个文本文件。你会建议我采用什么方法来做这个?

1 个答案:

答案 0 :(得分:1)

您可以将内容保存到文件中,然后使用 wget curl 发布。

$ wget --post-file=<file path>

$ curl --data-binary @<file path>