Re: [PHP-DEV] Re:[PHP-DEV] [VOTE] Allow a trailing comma in function calls

2017-10-21 Thread Kalle Sommer Nielsen
Hi CHU Zhaowei 2017-10-22 7:24 GMT+02:00 CHU Zhaowei : > Hello Sammy, > > > I'd like to know if a trailing comma would affect the number of args or not. > for example, > ``` > function foo(){ > return func_num_args(); > > } > foo('a','b',); > ``` > would return 2 or 3? With the current patch s

[PHP-DEV] Re:[PHP-DEV] [VOTE] Allow a trailing comma in function calls

2017-10-21 Thread CHU Zhaowei
Hello Sammy, I'd like to know if a trailing comma would affect the number of args or not. for example, ``` function foo(){ return func_num_args(); } foo('a','b',); ``` would return 2 or 3? best regards, CHU Zhaowei -- Original -- From: "Sammy Kaye Powers"

[PHP-DEV] [VOTE] Allow a trailing comma in function calls

2017-10-21 Thread Sammy Kaye Powers
Hi internalsland! Seeing that the mandatory two-week discussion period has completed and there are no open questions, the RFC to allow a trailing comma in function calls in PHP 7.3 is up for vote. https://wiki.php.net/rfc/trailing-comma-function-calls As this is a change to the language syntax,

Re: [PHP-DEV] Re: Wouldn't Exception::getContext() be useful?

2017-10-21 Thread Michael Morris
Just for debugging. I've been mulling over how to improve exception/error handling in Drupal 8 out of the box. On Sat, Oct 21, 2017 at 10:31 AM, Rowan Collins wrote: > On 21 October 2017 11:41:46 BST, "Christoph M. Becker" > wrote: > >On 21.10.2017 at 09:20, Michael Morris wrote: > > > >> Right

Re: [PHP-DEV] Re: Wouldn't Exception::getContext() be useful?

2017-10-21 Thread Rowan Collins
On 21 October 2017 11:41:46 BST, "Christoph M. Becker" wrote: >On 21.10.2017 at 09:20, Michael Morris wrote: > >> Right now the only way I know of to see the context of an exception >throw >> is to pass it in.. >> >> throw new CustomException(get_definted_vars()); >> >> It would be very useful

[PHP-DEV] Re: Wouldn't Exception::getContext() be useful?

2017-10-21 Thread Christoph M. Becker
On 21.10.2017 at 09:20, Michael Morris wrote: > Right now the only way I know of to see the context of an exception throw > is to pass it in.. > > throw new CustomException(get_definted_vars()); > > It would be very useful to have exceptions just have this as a method. > set_error_handle had thi

[PHP-DEV] Wouldn't Exception::getContext() be useful?

2017-10-21 Thread Michael Morris
Right now the only way I know of to see the context of an exception throw is to pass it in.. throw new CustomException(get_definted_vars()); It would be very useful to have exceptions just have this as a method. set_error_handle had this ability, but it's now deprecated. I'm guessing there's an