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 deprecated in php 7.4 #945

Open Christophorus65 opened 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