PHP CodeIgniter Batch Insert Not Accepting My Array
问题 I'm unable to get the following code to work, and it has something to do with the forming of the array. The array is actually build after a foreach() loop runs a few times, then I want to batch insert, but it comes up malformed. Why? foreach ($results as $r) { $insert_array = array( 'ListingRid' => $r['ListingRid'], 'StreetNumber' => $r['StreetNumber'], 'StreetName' => $r['StreetName'], 'City' => $r['City'], 'State' => $r['State'], 'ZipCode' => $r['ZipCode'], 'PropertyType' => $r[