时间:2021-07-01 10:21:17 帮助过:19人阅读
selectDB('fish_test'); //如无数据库则会自动创建
$collection=$db->selectCollection('fish');//如无数据库表则会自动创建
$record=array(
'name'=>'fish',
'time'=>'123',
'StartTime'=>'456',
)
$collection->save($record);//添加 新记录
}
}
?>