Re: [PHP-DEV] PHP 7.0.0alpha1 Released for Testing!

2015-06-13 Thread Rasmus Lerdorf
On Jun 13, 2015, at 14:54, Jan Ehrhardt php...@ehrhardt.nl wrote: Rasmus Lerdorf in php.internals (Fri, 12 Jun 2015 13:13:16 -0700): You can get even more speed by compiling with --enable-opcache-file and then in your php-cli.ini add: opcache.enable_cli=1 opcache.file_cache=/var/tmp

Re: [PHP-DEV] Array dereferencing of scalars

2015-06-13 Thread Yasuo Ohgaki
Hi Rowan, On Thu, Jun 11, 2015 at 5:59 PM, Rowan Collins rowan.coll...@gmail.com wrote: Yasuo Ohgaki wrote on 11/06/2015 00:50: If PHP should return NULL always against NULL variables, we may be better to reconsider these behavior. [yohgaki@dev Download]$ php ?php $v = NULL; $$v;

Re: [PHP-DEV] Array dereferencing of scalars

2015-06-13 Thread Yasuo Ohgaki
Hi all, On Fri, Jun 12, 2015 at 9:36 AM, Chris Wright c...@daverandom.com wrote: On 12 June 2015 at 00:35, Rowan Collins rowan.coll...@gmail.com wrote: On 11/06/2015 21:22, Chris Wright wrote: I'm inclined to agree that we should have consistency here, and that the current behaviour in

Re: [PHP-DEV] Segfault in master with PHPUnit

2015-06-13 Thread Sebastian Bergmann
Am 14.06.2015 um 07:29 schrieb Sebastian Bergmann: I have run across a weird segfault with the current master when trying to run PHPUnit (using PHPUnit's own test suite). Weird because I get a segfault immediately on startup with a release build and a segfault much later when using a debug

[PHP-DEV] Segfault in master with PHPUnit

2015-06-13 Thread Sebastian Bergmann
I have run across a weird segfault with the current master when trying to run PHPUnit (using PHPUnit's own test suite). Weird because I get a segfault immediately on startup with a release build and a segfault much later when using a debug build. Detailed information is below, let me know if

Re: [PHP-DEV] Segfault in master with PHPUnit

2015-06-13 Thread Xinchen Hui
Hey: On Sun, Jun 14, 2015 at 1:42 PM, Sebastian Bergmann sebast...@php.net wrote: Am 14.06.2015 um 07:29 schrieb Sebastian Bergmann: I have run across a weird segfault with the current master when trying to run PHPUnit (using PHPUnit's own test suite). Weird because I get a segfault

Re: [PHP-DEV] PR #1325 - array_column() for array of objects

2015-06-13 Thread Rowan Collins
On 12 June 2015 02:31:18 BST, Tjerk Meesters tjerk.meest...@gmail.com wrote: Hi, I've created a PR here: https://github.com/php/php-src/pull/1325 This enhancement allows for properties on objects to work in the same way as arrays for the inner elements of the main array. It also supports the

Re: [PHP-DEV] PHP 7.0.0alpha1 Released for Testing!

2015-06-13 Thread Jefferson Gonzalez
On 06/12/2015 04:13 PM, Rasmus Lerdorf wrote: You can get even more speed by compiling with --enable-opcache-file and then in your php-cli.ini add: opcache.enable_cli=1 opcache.file_cache=/var/tmp opcache.file_cache_only=1 Then every time you run composer it won't have to

Re: [PHP-DEV] PHP 7.0.0alpha1 Released for Testing!

2015-06-13 Thread Thomas Bley
Jefferson Gonzalez schrieb am 13. Juni 2015 21:04: On 06/12/2015 04:13 PM, Rasmus Lerdorf wrote: You can get even more speed by compiling with --enable-opcache-file and then in your php-cli.ini add: opcache.enable_cli=1 opcache.file_cache=/var/tmp opcache.file_cache_only=1

Re: [PHP-DEV] PHP 7.0.0alpha1 Released for Testing!

2015-06-13 Thread Jan Ehrhardt
Rasmus Lerdorf in php.internals (Fri, 12 Jun 2015 13:13:16 -0700): You can get even more speed by compiling with --enable-opcache-file and then in your php-cli.ini add: opcache.enable_cli=1 opcache.file_cache=/var/tmp opcache.file_cache_only=1 Then every time you run composer it