Re: [PHP-DEV] Support for keywords where possible

2013-09-14 Thread Bob Weinand
Am 14.9.2013 um 23:21 schrieb Pierre Joye : > Hi, > On Sep 14, 2013 10:56 AM, "Bob Weinand" wrote: > > > > Am 13.9.2013 um 16:18 schrieb Bob Weinand : > > > What then would be still supported exactly is > > > with the restricted list: > > > - typehint > > > - class/trait/interface names > > > - go

Re: [PHP-DEV] Support for keywords where possible

2013-09-14 Thread Pierre Joye
Hi, On Sep 14, 2013 10:56 AM, "Bob Weinand" wrote: > > Am 13.9.2013 um 16:18 schrieb Bob Weinand : > > What then would be still supported exactly is > > with the restricted list: > > - typehint > > - class/trait/interface names > > - goto-label > > > > unrestricted: > > - method names > > - consta

Re: [PHP-DEV] Support for keywords where possible

2013-09-14 Thread Bob Weinand
Am 13.9.2013 um 16:18 schrieb Bob Weinand : > What then would be still supported exactly is > with the restricted list: > - typehint > - class/trait/interface names > - goto-label > > unrestricted: > - method names > - constant names > - property names > - trait aliases > - declare list > (- argum

Re: [PHP-DEV] date.timezone E_WARNING -- Really necessary? What's the rationale?

2013-09-14 Thread Richard Quadling
On 2 September 2013 12:16, Nikita Popov wrote: > On Mon, Sep 2, 2013 at 11:47 AM, Derick Rethans wrote: > > > On Wed, 28 Aug 2013, Nikita Popov wrote: > > > > > On Thu, May 23, 2013 at 8:40 PM, Daniel Lowrey > > wrote: > > > > > > > I'm probably not the typical PHP user; I spend 99% of my PHP t

[PHP-DEV] Gist to allow for [SAPI] specific sections in ini files.

2013-09-14 Thread Richard Quadling
Hi. I've started playing with PHP installed on my Mac (and Centos VM). The version I had preinstalled on the VM uses an additional directory for ini files. I wanted to have some settings that were different depending upon the SAPI but not have a completely different set of files. So, I created t

Re: [PHP-DEV] Wake up

2013-09-14 Thread David Soria Parra
Florin Patan schrieb: > - lack of clear documentation about the internals: you really can't > tell me that the docs out there are clear because I did a bunch of > searching for them and I'm pretty good at finding stuff You are welcome to improve the documentation and make it easier for people to

[PHP-DEV] PHP CLI setting cooked terminal mode

2013-09-14 Thread Alain Williams
Hi, I am running a PHP script at the command line and piping the output through less: ./myScript | less Since less is an interactive program it puts the terminal into 'raw' mode so that it can read characters one at a time. However, when I do the above I find that the commands that I type t

[PHP-DEV] Re: [RFC] Syntax for variadic functions

2013-09-14 Thread Nikita Popov
On Wed, Aug 28, 2013 at 5:47 PM, Nikita Popov wrote: > Hi internals! > > I'd like to propose an RFC, which adds dedicated syntax for variadic > functions: > > https://wiki.php.net/rfc/variadics > > Basically this allows declaring variadics directly in the function > signature, rather than fet