gpt4 book ai didi

php - 如何在此循环中跳过空结果或错误?

转载 作者:行者123 更新时间:2023-12-01 00:15:35 25 4
gpt4 key购买 nike

我确实有一个将数据存储到 mysql 中的循环...

/connect to your database 
//read your text file into an array, one entry per line

$lines = file('name.txt');

//loop through each website URL you read from the file
foreach ($lines as $name) {

//do some code
//Insert data to MySQL
mysql_query("INSERT INTO table (data1,data2) VALUES ('$data1','$data2')");

}

我的问题是当代码返回空时..然后它给出错误并停止...所以我怎样才能跳过它并继续下一个名称以便循环在完成之前不会停止?

最佳答案

foreach($lines as $line){
if(empty(trim($line)){ continue; }
// do your insert, etc.
}

如果您想做的只是检查空行,这会做到这一点。

祝你好运!

关于php - 如何在此循环中跳过空结果或错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4597624/

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