phpminiadmin icon indicating copy to clipboard operation
phpminiadmin copied to clipboard

older version of PHP

Open satis4action opened this issue 11 months ago • 1 comments

if the PHP version is older than 8.0, you need to add this line to the beginning of the php script ;-) Otherwise export to csv doesnot working

if (!function_exists('str_starts_with')) { function str_starts_with(string $haystack, string $needle): bool { return substr($haystack, 0, strlen($needle)) === $needle; } }

satis4action avatar Apr 07 '25 11:04 satis4action

Or use https://github.com/symfony/polyfill-php80 and it will polyfill all the methods for PHP 8

williamdes avatar Apr 07 '25 13:04 williamdes