需求和简单,excel中两列数据,要一次插入到sql表中
当然,
列要一样多
哦。而且最重要的,一定要trim
一下。
<?php
$a='导入ID
导入来源
用户id
微博ID
微博昵称
微博粉丝数
微博关注数
微博数
微博描述
微博认证原因
新浪微博地址
微博头像
微博注册时间
电话
邮箱
QQ号
微信号
姓名
性别
年龄
生日
星座
民族
省份
城市
地区
人生阶段
婚姻状态
生育状态
语言
教育
学校
公司
职业
行业
收入
用户类型
备注';
$b='task_id
source
id
idstr
screen_name
followers_count
friends_count
statuses_count
description
verified_reason
profile_url
profile_image_url
created_at
phone
email
qq
weixin
name
gender
Age
birthday
horoscope
nation
province
city
location
Life_stage
Marital status
Growth state
Language
education
school
company
occupation
industry
income
user_type
note';
$field_name=explode("\n",$a);
foreach ($field_name as $key => &$value) {
$value=trim($value);
}
unset($value);
$culumn_name=explode("\n",$b);
foreach ($culumn_name as $key => &$value) {
$value=trim($value);
}
unset($value);
foreach ($field_name as $key => $value) {
$data[] = "('$field_name[$key]','$culumn_name[$key]')";
}
echo $bb="insert into user_field (field_name,column_name) values ".implode(',',$data);
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。