[PHP-DEV] Filter for easy bugs

2017-02-25 Thread Quentin Headen
Hello all. As a PHP developer, I am interested in contributing to the core C code. In the PHP bug tracker, are there any filters that will allow me to view bugs that are easy to get started with? This will help me better learn the internal architecture. Thanks! -- PHP Internals - PHP Runtime

Re: [PHP-DEV] Nullable types and strict type-hinting with default null value

2017-02-25 Thread Stanislav Malyshev
Hi! > Scalar types declarations were introduced in PHP 7.0 but it was not > possible to pass null as a default value to function/method. It was > finally done by a small workaround described in documentation as "The > declaration can be made to accept NULL values if the default value of > the

Re: [PHP-DEV] Re: [RFC] Extended String Types For PDO

2017-02-25 Thread Marco Pivetta
Hi Adam On Fri, Feb 24, 2017 at 2:28 PM, Adam Baratz wrote: > > > > Based on some pain points with my team and things I've heard from others, > > I created an RFC to handle "national" character sets for emulated > prepared > > statements: > >

Re: [PHP-DEV] Nullable types and strict type-hinting with defaultnull value

2017-02-25 Thread Andrea Faulds
Hi, Niklas Keller wrote: 2017-02-25 16:12 GMT+01:00 Andrea Faulds : Rowan Collins wrote: On 23 February 2017 09:15:27 GMT+00:00, "Michał" wrote: And what about situation when someone is forcing declare(strict_types=1)? I think, it's really a good place to

[PHP-DEV] Re: [RFC] Extended String Types For PDO

2017-02-25 Thread Andrea Faulds
Hi Adam, Adam Baratz wrote: Based on some pain points with my team and things I've heard from others, I created an RFC to handle "national" character sets for emulated prepared statements: https://wiki.php.net/rfc/extended-string-types-for-pdo I had previously suggested this as a

Re: [PHP-DEV] Nullable types and strict type-hinting with default null value

2017-02-25 Thread Niklas Keller
2017-02-25 16:12 GMT+01:00 Andrea Faulds : > Hi, > > Rowan Collins wrote: > >> On 23 February 2017 09:15:27 GMT+00:00, "Michał" wrote: >> >>> And what about situation when someone is forcing >>> declare(strict_types=1)? I think, it's really a good place to force >>>

Re: [PHP-DEV] Nullable types and strict type-hinting with default null value

2017-02-25 Thread Andrea Faulds
Hi, Rowan Collins wrote: On 23 February 2017 09:15:27 GMT+00:00, "Michał" wrote: And what about situation when someone is forcing declare(strict_types=1)? I think, it's really a good place to force proper types. Including nulls. strict_types controls the behaviour of