gpt4 book ai didi

PHP SQL :can contents of a word document being split and then insert to database in single row each

转载 作者:行者123 更新时间:2023-11-30 00:12:53 24 4
gpt4 key购买 nike

抱歉打扰了。我有一个关于数据库调用 KEYWORDS 的表..包含 KEY 列..我在 1 个名为 keywords.docx 的 docx 格式文件中列出了一堆关键字..文件中的每个关键字都用逗号分隔..关键字就像这个:

environment, country pollution, animal habitat problem, water, energy..

所以上面有 5 个关键字。我的想法是我将 keywords.docx 上传到页面,然后单击“保存”按钮。在数据库服务器端,关键字将自动单独插入到 KEY 列中。这意味着他们在 KEYWORDS 表下的 KEY 列中将有 5 行关键字。在 php 和 mysql 中是否可能..???

非常感谢您的帮助和意见...:)

最佳答案

您可以在 PHP 中使用爆炸方法,如下所示:-

<?php $data="ONE TWO THREE FOUR FIVE"; 
$splittedstring=explode(" ",$data,-2);
foreach ($splittedstring as $key => $value) {
echo "splittedstring[".$key."] = ".$value."<br>"; }
?>

它的输出将是这样的:-

splittedstring[0] = ONE 
splittedstring[1] = TWO
splittedstring[2] = THREE

查看更多信息:

http://braincybersolutions.com/php-tutorial/php-explode-split-a-string-by-string-into-array/#sthash.tnUaGi9w.dpuf

此后,您可以将您的值存储在数据库中。

关于PHP SQL :can contents of a word document being split and then insert to database in single row each,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23903522/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com