catfan / Medoo

The lightweight PHP database framework to accelerate the development.
https://medoo.in
MIT License
4.83k stars 1.15k forks source link

Fatal error: Uncaught Error: Call to undefined function Medoo\array_key_last() #1004

Closed RetiredQQ closed 3 years ago

RetiredQQ commented 3 years ago

Information

Describe the Problem As I said in the title but when I try version 1.7.1 its works so I downgrade Medoo to the old version.

Detail Code $db->select("users", ["is_refunded"], ["LIMIT" => 100]);

Expected output A clear and concise description of what output you expected. Fatal error: Uncaught Error: Call to undefined function Medoo\array_key_last() in /var/www/html/Medoo.php:1584

catfan commented 3 years ago

Since v2.0, the minimal requirement is PHP 7.3+.

Just upgrade to PHP 7.3, or PHP 7.4 is recommended.

RetiredQQ commented 3 years ago

I just confirm that after upgrading my PHP version to 7.3 the issue is gone.