推荐答案我唯一要更改的就是出于可读性目的而使用sprintfThe only thing i would change would be to use sprintf for readability purposes$sql = sprintf( 'INSERT INTO table (%s) VALUES ("%s")', implode(',',array_keys($_fields)), implode('","',array_values($_fields)));mysql_query($sql);并确保这些值均已转义.and make sure the values are escaped. 这篇关于如何使用关联数组编写良好的PHP数据库插入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-26 06:51