Re: [PHP-DEV] Consistent function names

2015-03-01 Thread Terry Cullen
On 2 March 2015 at 01:18, S.A.N wrote: > Maybe better implement for method calls on primitive types in PHP 7? > https://github.com/nikic/scalar_objects > > ​I've searched through the internals archive looking for debate on using scalar objects without much luck. I'd love to see some discussion a

Re: [PHP-DEV] Naming of 'weak' type hints

2015-03-31 Thread Terry Cullen
nk we can easily do without introducing a new word into the > vocabulary here. > > > > Thoughts? > > > > Zeev > Coercive? -- Regards, Terry Cullen Freelance Senior PHP Programmer/Web Developer -- Phone 1300-955-838 <+61-1300-955-838>Mobile 04-3836-8032 &l

Re: [PHP-DEV] Move internals discussion to a better medium

2015-08-04 Thread Terry Cullen
On Tuesday, 4 August 2015, Johannes Schlüter wrote: > On Sun, 2015-08-02 at 17:15 -0500, Stephen Coakley wrote: > > You have to admit, NNTP news is an aging technology, with fewer and > > fewer readers available as time goes on. Nowadays (for graphical > > clients), there's Pan, and Thunderbird,

Re: [PHP-DEV] PHP 7.1 - Address PHPSadness #28?

2015-09-17 Thread Terry Cullen
Hi, On 17 September 2015 at 19:01, Rowan Collins wrote: > On 17 September 2015 02:17:59 BST, Robert Williams > wrote: > > An unset variable is not null. Rather, it’s > >completely undefined, and PHP yells at you for just that reason if you > >try to access it. Then, it turns around and tries to

Re: [PHP-DEV] PHP 7.1 - Address PHPSadness #28?

2015-09-17 Thread Terry Cullen
​Hi Rowan,​ On 17 September 2015 at 22:52, Rowan Collins wrote: > Terry Cullen wrote on 17/09/2015 13:41: > >> Here is an example where exists would be useful; >> > > You answered your own request: > > // I should have used property_exists() instead of isset(

Re: [PHP-DEV] [RFC] [Draft] Adopt Code of Conduct

2016-01-05 Thread Terry Cullen
g within a large OS project. I thought it might add to the conversation... http://blog.randi.io/2015/12/31/the-developer-formerly-known-as-freebsdgirl/ Terry Cullen

Re: [PHP-DEV] [RFC] [Draft] Adopt Code of Conduct

2016-01-05 Thread Terry Cullen
Hi, On 6 January 2016 at 09:20, Paul M. Jones wrote: > > > On Jan 5, 2016, at 17:09, Terry Cullen wrote: > > > > Hi, > > > > > > > > On 5 January 2016 at 07:06, Anthony Ferrara wrote: > > > >> Hey all, > >> >

Re: [PHP-DEV] [RFC] [DISCUSSION] Deprecate PHP's short open tags V2

2019-07-25 Thread Terry Cullen
ning but the owners of these projects are not interested in spending any money on pointless updates and will simply stop upgrading PHP. I'm a big supporter the direction PHP is going in with types and alike but this one has jumped the shark. Terry Cullen

Re: [PHP-DEV] [RFC] Pipe Operator

2016-05-02 Thread Terry Cullen
|> getFileArg($$) > |> array_merge($ret, $$); > > Not completely the best, but perhaps there's some sort of an idea here? > > > -- > Stephen > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > > ​Doesn't Nikic's scalar objects (https://github.com/nikic/scalar_objects) more or less achieve the same thing while also cleaning up the std lib? $ret = scandir($arg) ->filter(function(){}) ->map(function(){}) ->merge($someOtherArray); Terry Cullen