Re: [PHP-DEV] gcov cron/tags.inc

2017-07-18 Thread Kalle Sommer Nielsen
cc'ing Nuno, our GCOV guy! 2017-07-18 21:32 GMT+02:00 Sara Golemon <poll...@php.net>: > Looks like I don't have karma to add PHP_7_2 to gcov runs, could > someone do that for me? Thanks. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development

[PHP-DEV] Re: [PHP-CVS] com php-src: Deprecated the read_exif_data() alias: NEWS UPGRADING ext/exif/exif.c ext/exif/tests/exif_read_exif_data_basic.phpt

2017-07-08 Thread Kalle Sommer Nielsen
Hi 2017-07-08 15:02 GMT+02:00 Kalle Sommer Nielsen <ka...@php.net>: > Commit:ba28d75c2c72bc17841dbc410496e8d62e139681 > Author:Kalle Sommer Nielsen <ka...@php.net> Sat, 8 Jul 2017 > 15:02:05 +0200 > Parents: 5c6e0b189efe78ebc41ee80ef76a2e9e90f914f6 >

Re: [PHP-DEV] Getting fd from stream

2017-07-06 Thread Kalle Sommer Nielsen
ion? It seems like this is not exposed at all by PHP. I have CC'ed Sara as one of the old school streams persons, maybe she has some insights why it is not exposed or if it is worth exposing fileno() in 7.2+ -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Develop

Re: [PHP-DEV] Re: OBJECT_OPERATOR vs. DOUBLE_COLON

2017-07-05 Thread Kalle Sommer Nielsen
I assume so. It wouldn't be the only place that accepts either a class name > or an object of that class. Thinking about it, couldn't this have been a side effect of the "Dynamic access to static methods", available as of PHP 5.3: -- regards, Kalle Sommer Nielsen ka...@php.net -

Re: [PHP-DEV] OBJECT_OPERATOR vs. DOUBLE_COLON

2017-07-05 Thread Kalle Sommer Nielsen
find > better things to do than take another stab at removing it. Agreed. Even as a non native hebrew speaker (or speaker at all), I find this to be a part of PHP history, which we should not touch, and in the end, I find it kinda funny ;-) -- regards, Kalle Sommer Nielsen ka...@php.net

Re: [PHP-DEV] [RFC] [Voting] Class Naming

2017-07-05 Thread Kalle Sommer Nielsen
the second one is > "nothing". That is basically the point. A vote like you said definitely > makes sense, yes. That's how I always interpreted our voting process for multi polls like this one -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Developm

Re: [PHP-DEV] Final variables

2017-06-28 Thread Kalle Sommer Nielsen
but not modify it as well: class A { protected readonly $b; public function __construct() { $this->b = 'C'; } } class B extends A { public function read() { echo $this->b; } public function write() { $this->b = 'D'; } } $b = new B; $b->read(); // "C" $b->

Re: [PHP-DEV] Final variables

2017-06-28 Thread Kalle Sommer Nielsen
known it". I get that, but I still don't understand why you would forcefully need it to be a variable still then if you know the value is gonna be constant, of course besides global visibility or in iterations -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime D

Re: [PHP-DEV] Final variables

2017-06-28 Thread Kalle Sommer Nielsen
2017-06-28 19:37 GMT+02:00 Niklas Keller <m...@kelunik.com>: > Arrays are supported, but not objects. Ah yes ofcourse, my apologies. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Final variables

2017-06-28 Thread Kalle Sommer Nielsen
onsea/issues/363 > > -- > David Rodrigues [1] http://php.net/constants [2] https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/readonly -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] [Vote] Doxygen

2017-06-26 Thread Kalle Sommer Nielsen
> works on PHP in perpetuity and a simple majority is nothing like a strong > enough consensus. I'm in the same boat as you and Anatol here. I think it is important to note that all who actively work on the Core/Engine have no except for Stas, which also should be a good indicator that we s

Re: [PHP-DEV] PHP-LDAP EXOP support

2017-06-26 Thread Kalle Sommer Nielsen
It is tight, but still possible to get features added =) -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] [Discussion] Retry functionality

2017-06-19 Thread Kalle Sommer Nielsen
://wiki.php.net/rfc?rev=1497892778=diff>. Should be somewhat good now, let me know if I missed something -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP_OS_FAMILY and macOS

2017-06-13 Thread Kalle Sommer Nielsen
quot;, > rather than "Mac". This also encompasses other distros like PureDarwin. I agree, it makes a lot more sense than "Mac", I changed this to "Darwin": http://git.php.net/?p=php-src.git;a=commit;h=a251d9b2c11c2ab53b0214d728c40d70cd06567c -- regards, Kalle Som

Re: [PHP-DEV] PHP_OS_FAMILY and macOS

2017-06-13 Thread Kalle Sommer Nielsen
Hi 2017-06-13 8:00 GMT+02:00 Niklas Keller <m...@kelunik.com>: > Apply changes it every few years, maybe we should just call it "Apple"? :D I don't think that is all that bad an idea tbh, or simply "Mac" -- regards, Kalle Sommer Nielsen ka...@php.net --

Re: [PHP-DEV] Proposing inclusion of PCS in the 7.2 core distribution

2017-06-05 Thread Kalle Sommer Nielsen
on the edge of being too late for 7.2, remember we got the first alpha coming this thursday and the feature freeze on July 20th. On topic, I think it looks very interesting, tho I need to dig a bit more into it and would look forward to a formal RFC. -- regards, Kalle Sommer Nielsen ka...@p

Re: [PHP-DEV] Re: [RFC][Release Process] Deprecate/Remove MD5 checksums

2017-06-05 Thread Kalle Sommer Nielsen
md5s. We also got MD5 checksums over at the QA site, but I recently (like a year ago) added SHA-256 checksums there, so it should be really easy to get rid of the MD5s -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscri

Re: [PHP-DEV] BC break in master (7.2) - Distinguish between unmatched subpatterns and empty matches in preg_*()

2017-05-15 Thread Kalle Sommer Nielsen
ality of life change to me (and other core developers too it seems). Had it been something major, I could understand that you'd wish it be reverted, but this is so minor that we shouldn't waste more keystrokes on it. [1] https://github.com/squizlabs/PHP_CodeSniffer/commit/d397f87d58119cd04cb

Re: [PHP-DEV] PHP 7.2 Release Managers

2017-03-30 Thread Kalle Sommer Nielsen
+1 On Mar 28, 2017 17:12, "Sara Golemon" wrote: > On Tue, Mar 28, 2017 at 9:56 AM, Joe Watkins > wrote: > > With the first alpha of 7.2 due in early June, we think it's time to > start > > the process of finding and electing release managers for the next

Re: [PHP-DEV] Add __toArray() method to objects that would be called on cast to array

2017-03-15 Thread Kalle Sommer Nielsen
d case afair, if anything then Reflection should have the APIs to officially allow that, although I am still skeptic of this. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Small mistake on wiki

2017-01-12 Thread Kalle Sommer Nielsen
formation readable :) -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Small mistake on wiki

2017-01-12 Thread Kalle Sommer Nielsen
oved from the wiki page. True, but PHP 5 is still widely available and 5.6 is still supported. Some companies support their extensions for PHP even longer than we support that specific branch, so leaving such information, despite we have only a tiny bit internals docs laying around may not be such a ba

Re: [PHP-DEV] Re: [Discussion] HKDF

2017-01-11 Thread Kalle Sommer Nielsen
ch details here, to avoid hijacking the topic, but if you are interested in this project, then hit up the docs list or catch some of us on IRC (#php.doc @ EFNet) -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [Discussion] HKDF

2017-01-11 Thread Kalle Sommer Nielsen
arkmail (our own NNTP site do not support search /o\))[1] or mail it to me directly and I'll commit it in case you are not granted a VCS account. [1] http://news.php.net/group.php?group=php.doc -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List

Re: [PHP-DEV] Re: [Discussion] HKDF

2017-01-11 Thread Kalle Sommer Nielsen
eing in SVN has been > kind of demotivating. You can use the online editor[1] and submit a patch as well. You'll find the relevant documentation for ext/hash in: en/reference/hash/functions/ [1] http://edit.php.net/ -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP R

Re: [PHP-DEV] bugsnet cleanup

2017-01-08 Thread Kalle Sommer Nielsen
e: "This extension ($ext) is no longer being actively maintained (Status: Suspended)" Also we got quick fixes for "Try a snapshot (5.4)" and even 5.5! -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: http://php.net/usage.php

2017-01-08 Thread Kalle Sommer Nielsen
net/usage.php ? With data from 2013 it looks kind of pathetic :) > > I can't see any particular value in this page, so I'm +1 on removing it. Removed in 3abb7f2da6f2806a28cd272b13cd36fe81f8c882. I intentionally left the graph image there. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP

Re: [PHP-DEV] [RFC][VOTE] array_change_keys

2017-01-08 Thread Kalle Sommer Nielsen
nsistency with that function and the rest. If we were to implement a Throwable technique for such, then it should be done for everything instead, like all ext/standard or ext/whatever and that is a lot of work, we just need someone to start the movement if it is so desired. -- regards, Kalle Sommer N

Re: [PHP-DEV] SimpleXML's atXPath method

2017-01-07 Thread Kalle Sommer Nielsen
s great. Coming from someone who worked a fair bit with XML recently (I know I know!). Same goes for the method naming, seems a little bit awkward -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ext/sqlite3 module version

2017-01-07 Thread Kalle Sommer Nielsen
a dev version anymore. > > Thoughts? Either NO_VERSION_YET (I think its called) or PHP_VERSION should be fine tbh. Argubly the first one is awkward considering it was once a PECL extension, but it was only short lived afair before it got merged to PHP 5.3.0 back then. -- regards, Kalle S

Re: [PHP-DEV] Re: [RFC] Deprecations for PHP 7.2

2016-12-21 Thread Kalle Sommer Nielsen
been ported to PHP7 (see ext/mysqli/mysqli_embedded.c), its not supported by mysqlnd (as per comments in the m4) and never had the /D flag for Windows (or so it seems). > Regards, > Nikita -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing L

Re: [PHP-DEV] PHP 5.6 end of active support

2016-12-14 Thread Kalle Sommer Nielsen
Hi On Dec 14, 2016 12:23, "Christoph M. Becker" wrote: > > Hi! > > The end of active support for PHP 5.6 is documented to be on December, > 31th[1]. Does that mean that there'll be no further release with > "normal" bug fixes (but only security fixes)? Yes, 5.6 was extended

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-12-10 Thread Kalle Sommer Nielsen
ner rather than later to avoid a repeat > performance. > > https://wiki.php.net/rfc/deprecations_php_7_2 Another one could be php_sapi_name() which returns a constant value, from which we already have available; PHP_SAPI -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Inter

Re: [PHP-DEV] Translating optional zval ** with zend_parse_parameters() to PHP 7

2016-11-25 Thread Kalle Sommer Nielsen
- Populate it (ZVAL_LONG is the same) The main difference from your code is to use 'z' (lower case) in ZPP, and then use zval* (which is what 'z' returns). I'm not at my dev machine, so I cannot test it but that should be how it goes -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals

Re: [PHP-DEV] Translating optional zval ** with zend_parse_parameters() to PHP 7

2016-11-24 Thread Kalle Sommer Nielsen
== FAILURE) { return; } if(prevcount) { /* ... use prevcount ... */ } Notice that all integers returned from the ZPP is a zend_long, you can see more information about the ZPP in php-src/README.PARAMETER_PARSING_API -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] How to handle error in sapi

2016-11-24 Thread Kalle Sommer Nielsen
e reasonable to me. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-21 Thread Kalle Sommer Nielsen
o keep three aliases where one of them is rarely used in "real" life applications. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-19 Thread Kalle Sommer Nielsen
net project will maybe know that its the core of PHP, but nothing more about it so I don't think it makes much sense to suddenly start label releases as such. PHP for almost two decades have only been released with Zend Engine and they are so coupled together today that I doubt you can build LibZend

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-19 Thread Kalle Sommer Nielsen
eleases from last major. Gonna think about this for a bit... -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-19 Thread Kalle Sommer Nielsen
g and decide there. Having a fixed, forced major version does not sound that great if we do not have something awesome that could only ever exist in a new major version, -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http:/

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-19 Thread Kalle Sommer Nielsen
n or motivating for contributing. (And I would rather not that PHP felt into a version scheme similar to that of Chrome where in December we could have PHP 42.0.) [1] https://wiki.php.net/rfc/forbid_dynamic_scope_introspection -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Interna

Re: [PHP-DEV] Request for wiki account activation

2016-11-19 Thread Kalle Sommer Nielsen
2016-11-19 18:32 GMT+01:00 Ryan Pallas <derokor...@gmail.com>: > Don't worry, we'll make python pay for the wall. It was to my understanding that the Perl project and Larry "Wall" was to pay for it, no? -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Inte

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-19 Thread Kalle Sommer Nielsen
without much more rambling: I think we should deprecate in x.z, then remove in x.z+1 depending on the feature, if we say "Oh let's remove this in the next major", chances are that major won't even be branches for years, and at that time, it could be forgotten. -- regards, Kalle S

Re: [PHP-DEV] [RFC] Abolish 50%+1 Votes

2016-11-19 Thread Kalle Sommer Nielsen
2016-11-19 12:18 GMT+01:00 Niklas Keller <m...@kelunik.com>: > 2016-11-17 19:45 GMT+01:00 Kalle Sommer Nielsen <ka...@php.net>: >> >> 2016-11-17 19:22 GMT+01:00 Joe Watkins <pthre...@pthreads.org>: >> > Afternoon Kalle, >> > >> > We have

Re: [PHP-DEV] Introduction

2016-11-19 Thread Kalle Sommer Nielsen
PHP participate. [1] http://news.php.net/php.webmaster -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [RFC] Abolish 50%+1 Votes

2016-11-18 Thread Kalle Sommer Nielsen
e the voter has > excellent grasp of. Only people with active VCS accounts or wiki accounts (that's been approved) are allowed to vote. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-18 Thread Kalle Sommer Nielsen
2016-11-19 1:05 GMT+01:00 Yasuo Ohgaki <yohg...@ohgaki.net>: > Hi all, > > On Sat, Nov 19, 2016 at 4:01 AM, Kalle Sommer Nielsen <ka...@php.net> wrote: >> auto_prepend/auto_append_file directives > > auto_prepend/append_file is handy to check application >

Re: [PHP-DEV] [RFC] Deprecations for PHP 7.2

2016-11-18 Thread Kalle Sommer Nielsen
rgc -- deprecate for non CLI? Might have other things to add later on, these are just what I had in mind so far -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Request for php-src karma

2016-11-18 Thread Kalle Sommer Nielsen
oud.com_age=0_updated=0> ccing stas for this, as he is the main go to guy for this (and the one that seems to have been assigned to most of the issues you have reported) -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] Abolish 50%+1 Votes

2016-11-17 Thread Kalle Sommer Nielsen
, such cases like this should be well written and how we can let such voices heard/matter, maybe there could be a category, say someone wants to add a new function to an extension, then everyone who contributes to that can vote too (as in karma based) or if its an internal API change that can affec

Re: [PHP-DEV] [RFC] Abolish 50%+1 Votes

2016-11-17 Thread Kalle Sommer Nielsen
t can be discussed. Kinda what we used to do with voting on the ML, just by tracking them on the wiki interface. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Netware and master

2016-11-12 Thread Kalle Sommer Nielsen
2016-11-12 12:17 GMT+01:00 Christoph M. Becker <cmbecke...@gmx.de>: > +1 It died horribly (and I lost some sanity from seeing netware so many times). -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, vi

Re: [PHP-DEV] C89 vs. C99

2016-11-12 Thread Kalle Sommer Nielsen
urse the version mapping: VC11 - Visual C++ 2012 VC12 - Visual C++ 2013 VC14 - Visual C++ 2015 So as long as future developments are compatible with VC14, its fine with me -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscr

[PHP-DEV] Netware and master

2016-11-11 Thread Kalle Sommer Nielsen
. Any objections for removal? -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Security issue handling

2016-11-09 Thread Kalle Sommer Nielsen
il out a link to the private CI from there. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Encouraging maintaining the language spec

2016-11-09 Thread Kalle Sommer Nielsen
s for the langspec. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Introduction for wilkesreid

2016-11-02 Thread Kalle Sommer Nielsen
p://php.net/get-involved.php for how you can contribute to PHP. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Security issue handling

2016-10-24 Thread Kalle Sommer Nielsen
butes to PHP, like Jakub, Christoph who both replied, Yasuo for session stuff (I'm sure he is interested) and others who are apart of the development team with regular commits. RMs already are on the security list. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime

Re: [PHP-DEV] Request for voting privilegies

2016-10-22 Thread Kalle Sommer Nielsen
On Oct 23, 2016 01:52, "Yasuo Ohgaki" wrote: > > Hi Leo, > > On Sat, Oct 22, 2016 at 6:53 AM, Leo Cavalcante wrote: > > I'd to contribute requesting voting privilegies, > > > > I'm Leo, a full-stack developer for Multi/Leadsolution, a marketing and > >

Re: [PHP-DEV] Request for voting privilegies

2016-10-22 Thread Kalle Sommer Nielsen
On Oct 22, 2016 00:00, "Leo Cavalcante" wrote: > > Hi, > I'd to contribute requesting voting privilegies, > > I'm Leo, a full-stack developer for Multi/Leadsolution, a marketing and > advertising company based on Sao Paulo, Brazil. > > After more than 8 years working with

Re: [PHP-DEV] Re: [RFC][DISCUSSION] Improve uniqid() uniqueness

2016-10-20 Thread Kalle Sommer Nielsen
in the core yet. What do you think? -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Constants for better double edge case handling

2016-10-18 Thread Kalle Sommer Nielsen
CONST_CS); > I like this idea but I do think that we should name them PHP_DOUBLE_* or PHP_FLOAT_* (preferably the first). -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: [RFC][DISCUSSION] Improve uniqid() uniqueness

2016-10-18 Thread Kalle Sommer Nielsen
is late without the RM consent to it. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ext/gd: Deprecate png2wbmp() and jpeg2wbmp()

2016-10-13 Thread Kalle Sommer Nielsen
se them, if > you want them deprecated or removed from PHP. I don't think this really matters for these so rarely used functions tbh -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] ext/gd: Deprecate png2wbmp() and jpeg2wbmp()

2016-10-13 Thread Kalle Sommer Nielsen
e, WBMP supposedly isn't really important nowadays. +1, I even think that 7.3 should have them removed. Besides png2wbmp() and jpeg2wbmp(), I'd like for you to add image2wbmp() to that list too. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Add support for HTTP/1.1

2016-10-05 Thread Kalle Sommer Nielsen
Hi Rowan On Oct 5, 2016 20:21, "Rowan Collins" wrote: > > Hi all, > > It sounds like the feeling so far is quite positive. I'll have another look for a dupe, then file a bug for the missing 100-continue support, and try to work on a patch. Once that's in place, and

Re: [PHP-DEV] Request for approval

2016-10-05 Thread Kalle Sommer Nielsen
Hi Andrei, You do not need a wiki account to comment, it is done on the php-internals ML. Voting is restricted to php.net contributors and selected community project representives On Oct 5, 2016 10:45, "Andrei Popescu" wrote: > > Hello, > > I'm the user "viperdel" and I would

Re: [PHP-DEV] Re: [RFC][DISCUSSION] Improve uniqid() uniqueness

2016-10-02 Thread Kalle Sommer Nielsen
e considered from 7.1+, I don't think we should change uniqid() mid life time of a branch, ccing Anatol and Davey -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] [VOTE] Add PHP Engine Constant Identifier

2016-09-09 Thread Kalle Sommer Nielsen
2016-09-10 3:09 GMT+02:00 Davey Shafik <da...@php.net>: > Uh… wow. Lemme see if I can fix that without breaking the votes. > > Also, you only voted on the second vote. Was that intentional? Fixed it, voteType should be "single", not "multi" :) -- regards,

Re: [PHP-DEV] [RFC] [VOTE] Add PHP Engine Constant Identifier

2016-09-09 Thread Kalle Sommer Nielsen
_just_ work. For syntax incompatibility, then we can't even filter out other implementations with a constant thats executed at runtime either, not that I believe it is a major issue, but it is something to consider too. Hence my -1 -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Run

Re: [PHP-DEV] Re: [RFC][DISCUSSION] Remove utf8_decode() and utf8_encode()

2016-09-09 Thread Kalle Sommer Nielsen
d from LibXML2, although we always enable ext/libxml, at least on Windows, this could be a minor issue if moved. I'm neutral on the renaming. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] wiki.php.net access

2016-09-02 Thread Kalle Sommer Nielsen
hat I can bring > some valid arguments to the table as to why certain features would prove > beneficial or why not. You do not need a wiki account to giving feedbak about RFCs ;-) -- They are all posted to the PHP internals mailing list, see http://php.net/mailinglists -- regards, Ka

Re: [PHP-DEV] VCS Account Request: adambaratz

2016-08-31 Thread Kalle Sommer Nielsen
work at trying to keep pdo_dblib alive, and I think Anatol (cc'ed) can vouch for him too -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Suggestion

2016-08-29 Thread Kalle Sommer Nielsen
ook much more clean while removing the redundancy. This was discussed on internals 2 years ago, back when PHP7 was being designed: http://marc.info/?t=14123534493=1=2 -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] feature-request : html + css logging in apache logs (example for the rest of the unix community too)

2016-08-27 Thread Kalle Sommer Nielsen
tioned on the php-general@ list, please keep to the mailing list rules, as linked in regards to top posting, and please do not embed huge chunks of code into mails, send a link to a paste bin instead, it makes the code rather hard to read and understand properly. Thanks [1] http://wiki.php.net/rfc

Re: [PHP-DEV] Re: [PHP] feature request : gzip caching

2016-08-27 Thread Kalle Sommer Nielsen
hn". Please be careful when posting and make sure you read over messages an extra time before hitting send. -- regards, Kalle Sommer Nielsen PHP Core Developer ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [PHP-CVS] com php-src: Fix #65550: get_browser() incorrectly parsers entries with "+" sign: NEWS ext/standard/browscap.c ext/standard/tests/misc/bug65550.phpt

2016-08-26 Thread Kalle Sommer Nielsen
backend user agent sniffing, is hopefully considered bad practice, and most of its functionality can be implemented in userland fairly easily. Any inputs on this? -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Incorrect Argument Count Error

2016-08-19 Thread Kalle Sommer Nielsen
, and I would assume that most of the userland developers expect us to continue converting into exceptions where reasonable, so the programs will *hopefully* quickly adapt. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-18 Thread Kalle Sommer Nielsen
e to the m4. As for zend_get_parameters_array_ex() usage, this should be a no brainer quick fix. > [1] > <https://bugs.php.net/search.php?cmd=display_name[]=DBM%2FDBA+related> > [2] <https://github.com/php/php-src/blob/PHP-7.0.9/ext/dba/dba.c#L654> -- regards, Kalle Som

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-18 Thread Kalle Sommer Nielsen
e in PECL, and with a PECL release DLLs will still be compiled for download if you like me, use Windows. But I kinda expect this to be the end of the off-topic, I'm so tired that we always end up on a diverted path and would much rather want to see some more interest in our core extensions. -- re

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-17 Thread Kalle Sommer Nielsen
fair bit in this thread, and it does not seem Leister is going to contribute despite being the only one around interested in this one, at least here on internals@. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://ww

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
then go to the source. [1] https://wiki.php.net/internals [2] http://php.net/internals2.ze1.zendapi [3] http://www.phpinternalsbook.com/ [4] https://nikic.github.io/ -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
s that there is no one to maintain those ways we have right now to collect to Interbase/Firebird, how are we magically gonna provide some decent alternatives if there is no one to even work on what we have in the first place? That does not even make sense. -- regards, Kalle Sommer Nielsen ka

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
t case make sure to double check that there is no obvious regressions (we all do make mistakes!). >From seeing your past commitment to pdo_dblib, I'm a +1 keeping this extension with you as a maintainer, and I'm sure Anatol (cced) who seems to also be active in some of the PRs say yes to

Re: [PHP-DEV] Re: [RFC][DISCUSSION] Remove utf8_decode() and utf8_encode()

2016-08-15 Thread Kalle Sommer Nielsen
do you think? -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] rethinking security issues in bugs db

2016-08-15 Thread Kalle Sommer Nielsen
Core Developers added to the trusted-devs.inc and an option to add in additional developers that may not be on the list that could be of relation to the bug. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
PHP5 > infrastructure! PDO is no substitute for the current interbase driver > and I use cross database transactions which only the generic driver can > handle anyway. I meant it can be used instead of ext/interbase, in case interbase gets removed. -- regards, Kalle Sommer Nielsen ka...@ph

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
ext/pdo_odbc as an alternative. If there is someone who can actively work on it, then it can have PECL releases and if there is a big demand for it, I do not see why it cannot return to the core at a point in time it is well maintained (either extension that is) -- regards, Kalle Sommer Nielsen ka...@php

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
tter kept in the Wiki or similar and be more up-to-date. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
etty much -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [RFC] orphan extensions cleanup

2016-08-15 Thread Kalle Sommer Nielsen
or another topic I guess [1] https://github.com/WordPress/WordPress/search?l=php=gettext=✓ -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] username: shaficsebd

2016-08-10 Thread Kalle Sommer Nielsen
On Aug 10, 2016 15:15, "Shafi Upwork" wrote: > > I was working Base64 Decode and Encode > I realize how it could be if we add a password with it? > we use > > $string = 'i am trying to do something'; > $encode = base64_encode($string ,'mypassword'); > > $decode =

Re: [PHP-DEV] GC issue wrt. to resource <-> object cycles?

2016-08-10 Thread Kalle Sommer Nielsen
.com/KalleZ/df08b99efc7c7166cfa36aab2dbe8160 [2] https://gist.github.com/KalleZ/b5b8d47f3d523c9e806188c85aa10c68 -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Array key access on non-array values - to be made illegal?

2016-04-12 Thread Kalle Sommer Nielsen
On Apr 12, 2016 15:02, "Ivan Enderlin" wrote: > > Hello Marco, > > Actually, you are trying to access to something that does not exist, so you get a null value. This part is logical. However, yes, a notice would be welcomed except it may be skipped for historical

Re: [PHP-DEV] Re: Can't compile php7 on OpenSuse 13.2

2015-10-25 Thread Kalle Sommer Nielsen
efined > reference to `zend_ast_append_doc_comment' > collect2: error: ld returned 1 exit status For this one, please see: https://bugs.php.net/bug.php?id=70750 -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] run-tests.php and dynamic extension dependencies

2015-10-23 Thread Kalle Sommer Nielsen
a command line argument to run-tests.php which php.ini you wish loaded, or none at all afair which should ease not having to modify makefiles and such. -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Forbid rebinding scope of closures created by ReflectionFunctionAbstract::getClosure()

2015-10-22 Thread Kalle Sommer Nielsen
n absolute must for us to have a proper release of our next major. Rather leave behaviour we don't have a proper solution for disabled for now until we can come in with a proper patch to avoid additional hacks in the code that will become even trickier to handle once the issue is resolved. --

Re: [PHP-DEV] SQLite 3.9.X in PHP 7.0.0RC6?

2015-10-21 Thread Kalle Sommer Nielsen
us we are in RC stage now to merge it. I don't see a reason for why we can't however merge it into a 7.0.x release once we know it is a little more stable (which also goes for 7.0). -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To uns

Re: [PHP-DEV] Scalar type hints and scalar type name aliases cause confuson

2015-10-13 Thread Kalle Sommer Nielsen
2015-10-13 13:08 GMT+02:00 Derick Rethans <der...@php.net>: > What about double vs float? Another common combination. (or "real" -- just to compliment the typecast) =P -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing

Re: [PHP-DEV] Re: Windows OpCache bug fix

2015-10-09 Thread Kalle Sommer Nielsen
own implementation in TSRM/, more specifically TSRM/tsrm_win32.c line ~591 (for shmget). -- regards, Kalle Sommer Nielsen ka...@php.net -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4   5   6   7   >