我想使用两个数组 1 作为列和另一个作为值来构建查询。我在第一个数组中有 3 个整数列,我不想将 0 作为默认值存储,所以我想设置 NULL,我想检查是否为它输入了任何值,如果没有输入,我想为其设置 NULL。但是当我创建查询时,我看不到 NULL,我只看到 null 被空白替换。似乎 PHP 正在剥离 NULL 字?
$set_null = array("asst_phone","mailing_zip","other_zip");
foreach($columns as $key=>$col){
if(in_array($col,$set_null) && $values[$key] == ""){
$val[$key] = NULL;
}
else
$val[$key] = "'".$values[$key]."'";
}
$query_vals = "";
foreach($val as $qval){
if($qval == "") $query_vals .= NULL;
$query_vals .= $qval;
}
echo $query_vals;
它生成如下查询
INSERT INTO zoho_contacts (`contactid`,`smownerid`,`contact_owner`,`lead_source`,`first_name`,`last_name`,`accountid`,`account_name`,`email`,`title`,`department`,`phone`,`home_phone`,`other_phone`,`fax`,`mobile`,`date_of_birth`,`assistant`,`asst_phone`,`reports_to`,`smcreatorid`,`created_by`,`modifiedby`,`modified_by`,`created_time`,`modified_time`,`mailing_street`,`other_street`,`mailing_city`,`other_city`,`mailing_state`,`other_state`,`mailing_zip`,`other_zip`,`mailing_country`,`other_country`,`description`,`email_opt_out`,`skype_id`,`salutation`,`add_to_quickbooks`,`secondary_email`) values ('418176000000052001','418176000000047003','','','','','418176000000047027','','','','','02164 25452132','','','','9798659821','','',,'','418176000000047003','','418176000000047003','','','','','','','','','',,,'','','','','','Mr.','','')
我的mysql列结构
列属性 = NULL => 是的,默认 => NULL,对吗??