ThingEngineer / PHP-MySQLi-Database-Class

Wrapper for a PHP MySQL class, which utilizes MySQLi and prepared statements.
Other
3.29k stars 1.35k forks source link

implode creates deprecation warning #944

Closed Christophorus65 closed 3 years ago

Christophorus65 commented 3 years ago

On line 1838 the script throws a deprecation warning with php 7.4 $this->_query .= ' (' . implode($dataColumns,', ') . ') ';

$this->_query .= ' (' . implode(', ', $dataColumns) . ') '; works

Christophorus65 commented 3 years ago

double post