phpF icon indicating copy to clipboard operation
phpF copied to clipboard

`each()` function is deprecated in php 7.2.0

Open ghost opened this issue 8 years ago • 7 comments

I just updating my php version to 7.2.0, and it seems the each function is deprecated in this version. http://php.net/manual/en/function.each.php

ghost avatar Dec 05 '17 08:12 ghost

I replaced while \( list\( (.*), (.*) \) = each\( (.*) \) \) \{ with foreach ( $3 as $1 => $2 ) { in src/phpf.php to avoid this problem, but when I tried to run it with PHP 7.2.12, a fatal error occured: Allowed memory size of 134217728 bytes exhausted (tried to allocate 16777224 bytes) I don't know why nor how to fix it.

stevenjoezhang avatar Nov 24 '18 07:11 stevenjoezhang

I tried the same thing and got the same error for PHP 7.3 Did you get any solution for this?

I replaced while \( list\( (.*), (.*) \) = each\( (.*) \) \) \{ with foreach ( $3 as $1 => $2 ) { in src/phpf.php to avoid this problem, but when I tried to run it with PHP 7.2.12, a fatal error occured: Allowed memory size of 134217728 bytes exhausted (tried to allocate 16777224 bytes) I don't know why nor how to fix it.

saurabh-cimpress avatar Nov 27 '19 09:11 saurabh-cimpress

I can only guess that this is a memory leak issue (such as infinite recursion), but haven't researched how to fix it. Given that this project has lost maintenance, perhaps you can find an alternative to it.

stevenjoezhang avatar Nov 27 '19 09:11 stevenjoezhang

I can only guess that this is a memory leak issue (such as infinite recursion), but haven't researched how to fix it. Given that this project has lost maintenance, perhaps you can find an alternative to it.

Any suggestions for alternatives?

saurabh-cimpress avatar Nov 27 '19 09:11 saurabh-cimpress

Maybe this one: https://github.com/prettier/plugin-php#editor-integration

stevenjoezhang avatar Nov 27 '19 09:11 stevenjoezhang

I will check it out :) Thanks

saurabh-cimpress avatar Nov 27 '19 09:11 saurabh-cimpress

You're welcome :)

stevenjoezhang avatar Nov 27 '19 09:11 stevenjoezhang