0

我对php非常陌生。我正在使用以下代码打开一个 csv 文件并更新我的数据库。我需要检查 csv 文件的第一行第一列的值。如果匹配“一些文本1”,那么我需要运行code1,如果它是“一些文本2”,运行code2,否则运行code3。我可以使用 if else 条件,但由于我使用的是 while 循环它失败了。谁能帮我。

    $handle = fopen($file_tmp,"r");
        while(($fileop = fgetcsv($handle,",")) !== false) 
        {
                    // I need to check here
        $companycode =  mysql_real_escape_string($fileop[0]);
        $Item = mysql_real_escape_string($fileop[3]);
        $pack = preg_replace('/[^A-Za-z0-9\. -]/', '', $fileop[4]);
        $lastmonth = mysql_real_escape_string($fileop[5]);
        $ltlmonth = mysql_real_escape_string($fileop[6]);
        $op = mysql_real_escape_string($fileop[9]);
        $pur = mysql_real_escape_string($fileop[10]);
        $sale = mysql_real_escape_string($fileop[12]);
        $bal = mysql_real_escape_string($fileop[17]);
        $bval = mysql_real_escape_string($fileop[18]);
        $sval = mysql_real_escape_string($fileop[19]);

        $sq1 = mysql_query("INSERT INTO `sas` (companycode,Item,pack,lastmonth,ltlmonth,op,pur,sale,bal,bval,sval) VALUES ('$companycode','$Item','$pack','$lastmonth','$ltlmonth','$op','$pur','$sale','$bal','$bval','$sval')");
    }
4

2 回答 2

0

也许您正在寻找 switch 语句?

案例 1:您必须为每一行触发不同的操作:

$handle = fopen($file_tmp,'r');
while(FALSE!==($fileop = fgetcsv($handle,','))) {
    switch($fileop[0]) {
        case 'some text 1':
            // do thing 1
            $sql = '...';
            break;
        case 'some text 2':
            // do thing 2
            $sql = '...';
            break;
        case 'some text 3':
            // do thing 3
            $sql = '...';
            break;
        default:
            $sql = FALSE;
    } // switch
} // while

if (FALSE!==$sql) {
    // now go on with the $sql statement and execute it using `mysqli` or `PDO`...
} // if

说明:您检查所读取的每一行的第一列 ( $fileop[0]) 并决定要触发的操作。


案例 2:您必须为每个文件触发不同的操作:

$handle = fopen($file_tmp,'r');
$action = NULL;
while(FALSE!==($fileop = fgetcsv($handle,','))) {
    if (is_null($action)) {
        switch($fileop[0]) {
            case 'some text 1': $action = 1; break;
            case 'some text 2': $action = 2; break;
            case 'some text 3': $action = 3; break;
            default:            $action = FALSE;
        } // switch
    } // if
    switch ($action) {
        case 1:
            $sql = '...';
            // prepare statement, use $fileop as array of attributes for the statement
            break;
        case 2:
            $sql = '...';
            // prepare statement, use $fileop as array of attributes for the statement
            break;
        case 2:
            $sql = '...';
            // prepare statement, use $fileop as array of attributes for the statement
            break;
    } // switch
} // while

解释:您检查您阅读的第一行中的第一列 ( $fileop[0])。只有在$action静止时才这样做NULL。一旦$action被设置,你离开它。现在您已经$action在处理步骤的开始定义了一次,并且可以对您读取的每一行做出反应。


通常,在此使用异常来处理意外的第一列值可能会有所回报,这样您就可以在这种情况下跳过读取整个文件......

于 2013-11-02T09:51:03.903 回答
0

为什么不直接加载到mysql?

load data local infile 'filename.csv' into table tblname
fields terminated by ','
enclosed by '"'
lines terminated by '\n'
(field1, field1, field1,...);
于 2013-11-02T10:49:50.227 回答