使用SQL查询将值数组插入数据库?

使用SQL查询将值数组插入数据库?,第1张

使用SQL查询将值数组插入数据库

这是另一个类似的解决方案。

代码:
<?phpfunction mysql_insert_array($table, $data, $exclude = array()) {    $fields = $values = array();    if( !is_array($exclude) ) $exclude = array($exclude);    foreach( array_keys($data) as $key ) {        if( !in_array($key, $exclude) ) { $fields[] = "`$key`"; $values[] = "'" . mysql_real_escape_string($data[$key]) . "'";        }    }    $fields = implode(",", $fields);    $values = implode(",", $values);    if( mysql_query("INSERT INTO `$table` ($fields) VALUES ($values)") ) {        return array( "mysql_error" => false,"mysql_insert_id" => mysql_insert_id(),"mysql_affected_rows" => mysql_affected_rows(),"mysql_info" => mysql_info()         );    } else {        return array( "mysql_error" => mysql_error() );    }}?>
用法示例:
<?php// Open database here// Let's pretend these values were passed by a form$_POST['name'] = "Bob Marley";$_POST['country'] = "Jamaica";$_POST['music'] = "Reggae";$_POST['submit'] = "Submit";// Insert all the values of $_POST into the database table `artists`, except// for $_POST['submit'].  Remember, field names are determined by array keys!$result = mysql_insert_array("artists", $_POST, "submit");// Resultsif( $result['mysql_error'] ) {    echo "Query Failed: " . $result['mysql_error'];} else {    echo "Query Succeeded! <br />";    echo "<pre>";    print_r($result);    echo "</pre>";}// Close database?>

来源 :将数组插入MySQL数据库表



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5649739.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存