前端:
<input name="name[]" type="text">
<input name="web[]" type="text">
<input name="log[]" type="text">
后台:
$user = new NameModel;
$a=input('name/a');
$b=input('web/a');
$d=input('log/a');
$c= array_map(function($a, $b ,$d) { return array('web'=>$b,'name'=>$a,'log'=>$d); }, $a, $b ,$d);
$res=$user->saveAll($c);
上一篇:thinkphp5+PHPMailer邮件发送配置与使用实例
下一篇:TP 数字字段 增加减少 setInc() 和 setDec() 使用说明
讨论数量:0