Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Call to undefined function array_column() [closed]

I am now getting the following error message when trying to run my php(codeigniter framework) code Fatal error: Call to undefined function array_column()

like image 300
Dereje Goshu Avatar asked Aug 30 '13 15:08

Dereje Goshu


2 Answers

http://php.net/manual/fr/function.array-column.php This is a function in PHP 5.5+, you are most likely using an older version of PHP

like image 145
Pascalc Avatar answered Oct 21 '22 12:10

Pascalc


That function is only for PHP 5.5+, so you probably have the wrong version of PHP.

like image 28
Jasper Avatar answered Oct 21 '22 13:10

Jasper