. There would have been anything that could have changed this
without creating any sort of BC issues. From the possible namespace
separators, \ was the best one as we could see. That's how it is, that's
I will be glad for each separator, but :: is the best one :-))
David Grudl
--
PHP
a valid point with a subject,
arguments, examples or at least ideas and a direction next time you post.
Thanks,
--
Slan,
David
Am 03.11.2008 um 16:41 schrieb Marcus Boerger:
2) Ther are iterator_apply()
owww that sounds like it really needs docs :>
smime.p7s
Description: S/MIME cryptographic signature
artially
qualified indentifiers" (Sub\Object) have to be written with preceding
backslash.
David Grudl
My english is poor but I hope you understand me ;)
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
r
namespace implementation does, and not like "relative path".
David Grudl
Původní zpráva
Předmět: Re:Namespace resolution rules has been changed?
Od: David Grudl <[EMAIL PROTECTED]>
Datum: 10.11.2008 23:53
> Can you please point us to an example describing this best practice?
For example Namespace Naming Guidelines in .N
fails.
*/
class MemberAccessException extends LogicException
{}
David Grudl
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
> 8) MFH mcrypt cleanups in HEAD. either the make sense or they dont, so
> either (choose one)
> b) MFH to 5.3
+1
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
tion alá 1) means, that namespace named foo\stuff is
fiction - there is only namespace named \foo\stuff. Lets use \foo\stuff
everywhere:
namespace \foo\classes;
use \foo\stuff as stuff;
This is (at least) very ugly.
David
p.s. Save useless backslashes, save a peace :-)
--
PHP Internals - P
true, however i have a counter example: classes from more general namespace
that use further nested classes (think some kind of behaviour and different
drivers/plugins for example).
so while it's true that more nested classes usually extend the less nested
ones it also common for more generic
'\\' . $class;
}
return new $class;
}
OMG
David Grudl
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
> > Why? I have developed framework using PHP namespaces and studied Zend
> > Framework source codes and result is: if we use the new resolution
rules
> > (1), than in nearly all cases developers must prefix class names
with \,
> > only in few cases prefix is not required. Why? Because usually
I have downloaded last Mono source code (http://www.mono-project.com/,
version 2.0.1), the open source version of one of the most complex and
mature framework in the world, the .NET framework.
Framework is written using namespaces (as opposite to current version of
Zend). And I have analysed s
book really.
Good luck,
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
ug and
assigning it to me please?
Etienne/Marcus, do you mind if I go ahead?
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
ive when it
is needed - using 'namespace' operator (as equivalent of the 'self'
operator). So I think now there is no reason to use default relative
resolving and it should be removed.
What about voting?
David Grudl
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Hi!
but it generates Warning: The use statement with non-compound name
'ArrayObject' has no effect.
The warning is correct.
It is not correct - the use statement has effect, as documented in
manual http://php.net/manual/en/language.namespaces.importing.php.
DG.
--
PHP Internals - PHP Runt
Snapshot 5.3.0alpha3-dev acts like manual, I think the manual is correct.
BTW - this is very useful feature. A "wrong-relative-resolving" rescuer ;)
DG.
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
don't know how difficult it is to implement, but it can be very useful
speed optimization for PHP 5.3 to improve ternary operator to use
reference counting.
David Grudl
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
f apps.
+1
In PHP there is no function for escaping JS strings and json_encode is
useful compensation. I use it this way very often.
David Grudl
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
need to be optimized. The only time
you can really tell its slower is in synthetic benchmarks.
Few hundred operations involving ternary operator is nothing unusual ;)
Původní zpráva
Od: Alexey Zakhlestin
On Sun, Dec 14, 2008 at 8:06 PM, David Grudl wrote:
Do you have any
m = Curry::create(array($d, 'format'), DATE_ATOM);
echo $getAtom();
This gives a fatal "Call to undefined method DateTime::getAtom()"
$d = new DateTime();
$d->getAtom = Curry::create(array($d, 'format'), DATE_ATOM);
echo $d->getAtom();
Is that intentio
exceptions. Excellent
feature of PHP 5.3 would be to resolve this errors.
David Grudl
>
> "cvs diff -u" against 5.3 branch shoould be ok for the start.
> after positive review, "cvs diff -u" against HEAD would be needed to
>
I really have to say it, you should make your changes to HEAD
__first__ then to 5.3. Not the other way around :)
--
Slan
On 25.12.2008, at 06:11, Lars Strojny wrote:
Hi David,
Am Dienstag, den 23.12.2008, 17:02 +0100 schrieb David Zülke:
[...]
This gives a fatal "Call to undefined method DateTime::getAtom()"
$d = new DateTime();
$d->getAtom = Curry::create(array($d, 'format'), DATE_AT
PF 2009 for PHP internals! And good luck in finishing the PHP 5.3.
David G.
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
necessary; just curious for the most part.
- David
On 01.01.2009, at 17:06, Marcus Boerger wrote:
Hello Hannes,
as discussed online. At the moment we should not have any __get()
calls during method resolution. The newly updated patch does that
now. And I think we are now safe to submit
Marcus,
thanks!
Why is it
Test::{closure}()
{closure}()
and not
Test::{closure}()
Test::{closure}()
in that test, though? Is it because func1() "was there" from the
Engine's POV after the ctor was called? AFAICT, that's the only
difference between the two.
Ch
or add
> call to __call() on private method invocation. The former approach presents
> more of a BC
> problem IMHO, so I am advocating the latter. I've attached a simple patch
> for consideration.
>
I'd say go ahead, this sounds like common sense to be consistent in
bot
of what you can do with it).
- David
smime.p7s
Description: S/MIME cryptographic signature
goood, too, while we're at it ;)
- David
smime.p7s
Description: S/MIME cryptographic signature
Am 13.01.2009 um 11:09 schrieb Alexey Zakhlestin:
On Tue, Jan 13, 2009 at 12:32 PM, troels knak-nielsen
wrote:
In a recent mail, some kind of issue regarding queryparams was
mentioned (Possibly related to namespaces). Could anybody explain
what
the issue is, or point to where it's discussed
verload)
should have precedence over a closure in a property.
Wouldn't that work?
- David
smime.p7s
Description: S/MIME cryptographic signature
Am 20.01.2009 um 18:41 schrieb Christian Seiler:
Hi,
maybe an IRC meeting is the easiest way to come to an agreement. How
about tomorrow evening 21:00 CEST in #php.closures on freenode?
Just for clarification: I assume you mean Wednesday, January 21st,
19:00
UTC (CEST == UTC+2) and thus 2
h magic contant:
$obj = factory(MyClass::__CLASS__); // returns object Foo\MyClass, very
understandable :-)
$obj = factory(Bar::__CLASS__); // returns object Other\Bar, as use
statement declares :-)
David Grudl
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
I think that's a great idea. The normal weekly/bi-weekly reports could
be CCed to internals@, with all discussion happening on gsoc@
- David
Am 22.01.2009 um 09:04 schrieb Hannes Magnusson:
On Thu, Jan 22, 2009 at 00:03, Elizabeth M Smith
wrote:
I think we really should encoura
you are looking for is probably this.
http://wiki.php.net/rfc/namespaces-for-internal-classes
I know this has been discussed but I'm not sure if any decision has
been made on that subject. Or if anyone had time to start digging into
this issue further than discussions. Lars?
Cheers,
--
Slan,
Dav
res to follow" page on the
wiki and simply go from there?
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
hooks would be nice, so the tickets are
annotated with links to the changesets. Right now, if I see someone's
comment "Fixed in CVS HEAD and PHP_5_3", I need to look at the date,
then go to the cvs mailing list or logs and find the respective
commit. Cumbersome.
- D
sn't treated as not passing a
value. The reason it worked with substr was by pure chance.
Out of curiosity - how hard would it be to implement a "default"
keyword that can be passed in function/method calls with the new
parameter parsing API?
- David
smime.p7s
Description: S/MIME cryptographic signature
cannot have different
method signatures for different PHP versions.
Good argument for adding a preprocessor, isn't it? :D
- David
smime.p7s
Description: S/MIME cryptographic signature
there are 5.2.6,
5.2.7 and 5.2.8?
Thanks,
- David
smime.p7s
Description: S/MIME cryptographic signature
On 05.02.2009, at 17:32, Johannes Schlüter wrote:
On Wed, 2009-02-04 at 13:12 +0100, David Zülke wrote:
Am 03.02.2009 um 14:41 schrieb Lukas Kahwe Smith:
http://bugs.php.net/bug.php?id=47206 - XSLT
I looked through the CVS logs, could you confirm I understand it
right:
The type hint
TRICT.
auto_globals_jit shouldn't be on, IMO.
- David
smime.p7s
Description: S/MIME cryptographic signature
On 17.02.2009, at 08:02, Eric Stewart wrote:
10. The production value of error_reporting has been changed to
E_ALL |
~E_DEPRECATED.
I guess you mean E_ALL & ~E_DEPRECATED
smime.p7s
Description: S/MIME cryptographic signature
>
> When I say working, I mean 100% of non-skipped tests passing, no compile
> warnings. The tests exert 80% code coverage, mostly leaving untestable
> stuff like errors that are only likely to occur when the disk crashes.
>
Seriously well done! Kudos
--
Slan,
David
--
PHP
hich I was proposing to mentor since you
weren't there Andrei, but it basically got no attention whatsoever and
not proposal from the students, thus no project :)
Hope this helps a bit.
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
t more % one the completion? I'd say that 69% is
merely a change from the last 2 years.
Anyways, issues with students and progress should be somewhat resolved
this year with the new approach to student mentoring and student
reporting tasks I'd say.
--
Slan,
David
--
PHP In
2009/3/27 Hannes Magnusson :
> 2009/3/27 Felipe Pena :
>> Hello,
>> just to inform, I've commited (yesterday) the patch removing the
>> UG(unicode) checks, etc across all source (except mysql exts). As the
>> patch has 492K, looks as no mail will be sent.
> [...]
Would you mind letting the list kn
- convert_to_text -> convert_to_unicode
>> + - convert_to_text_ex -> convert_to_unicode_ex
>> +
>> + (Felipe, Steph)
>
> Yay you!
>
Only thing I have to say about this is: "Dar dar" sorry about this :)
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
ll you that but xdebug web profiling was a project for
last year. Please read http://wiki.php.net/gsoc/2009 for this years
GSoC ideas.
Cheers :)
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
.
Cool work, do we go by adding 6 new ini settings and making sure they
are prefixed by default?
Also I guess we'll have to attach a css file with that? Inline css at
the top of the generated highlighted block maybe?
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
As Jani put it:
PLEASE, let the dead horse be!
- David
On 14.04.2009, at 17:11, Arvids Godjuks wrote:
Hello everyone.
I've been writing for some time now at
the
last project and it really sucks. I understand reason on depricating
short_open_tag and I agree. But I have a proposal
red of
committing all your patches) and at some point you'll be granted with
an account :)
Good luck and welcome :)
--
Slan,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
2009/5/26 David Soria Parra :
> Hi List,
>
> I recently discovered that zend_hash_func is equal to zend_get_hash_value.
> To clean this up, I would like to remove zend_hash_func in favor of
> zend_get_hash in HEAD. If there are no objections I would commit a patch in
> a few d
intentional? It seems that every internal feature that would
like to deal with hashes needs to implement this string->int casting
behavior of PHP itself. Why doesn't zend_hash_update() do it
automatically?
Cheers,
David
smime.p7s
Description: S/MIME cryptographic signature
On 15.06.2009, at 15:40, Matt Wilmas wrote:
Hi David,
Hey Matt,
- Original Message -
From: "David Zülke"
Sent: Monday, June 15, 2009
Hi folks,
while fixing http://bugs.php.net/bug.php?id=48557 I was wondering
why zend_hash_update doesn't automatically convert
Patch updated to reflect the change. It's against 5.3 btw. Now who
will commit it so it makes it into the next RC? :)
- David
On 15.06.2009, at 15:47, David Zülke wrote:
On 15.06.2009, at 15:40, Matt Wilmas wrote:
Hi David,
Hey Matt,
- Original Message -
From: "D
e than one case at a time. We didn't want to
produce a million test files for the several variants; is there a
nicer way to test this properly?
This feature is enabled by a SoapClient "feature" called
SOAP_MARSHAL_DATETIME. I think this is a reasonable choice.
Greet
Ron Korving wrote:
mysqli mysqli_connect ( [string host [, string username [, string passwd [,
string dbname [, int port [, string socket]] )
*cough*PDO*cough* (
http://us3.php.net/manual/en/ref.pdo-mysql.connection.php )
David Hall
--
PHP Internals - PHP Runtime Development
JSON objects would have a lot of
benefits. For instance, one could create JS functions or entire
object structures which otherwise could not be expressed through PHP
objects.
- David
Am 22.01.2006 um 09:50 schrieb Bart de Boer:
Daniel Convissor wrote:
Exactly what I was going to say.
The
Your examples 1-4 are bad.
They snould use non-static methodos.
Wrong. Example: Singletons where you could just do "MyObj extends
SingletonObj" without having to re-implement getInstance().
- David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, v
this:: would be excellent, since $this also references the actual
class that's calling, not the one that declares. Very good idea!
+1
- David
Am 02.03.2006 um 20:14 schrieb Andi Gutmans:
What about this:: ? Too confusing?
At 08:33 AM 3/2/2006, Mike Lively wrote:
Hallo,
Firstly t
I'd still say we make it "this". It's reasonable and consistent.
- David
Am 09.03.2006 um 01:13 schrieb Andi Gutmans:
This patch is a bit rough. I'll try and think if there's a more
elegant way.
Andi
At 01:06 PM 3/8/2006, Mike Lively wrote:
On Wed, 200
t of innovation, percection,
advancement is what defines mankind. You shouldn't really try to stop
that. It must be in the very interest of any language, even PHP, to
get better over time.
- David
Am 09.03.2006 um 11:57 schrieb Zeev Suraski:
I'd like to raise a motion to '
I am interested in taking over maintenance of the File_DICOM package PEAR.
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
about purity, it should not be added.
Purists may use other languages.
-- Pierre
I second that. Breaking BC in minor releases is nonsense.
- David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
lowups there.
>
> print ($life = "hard") -1;
($life="hard") assigns "hard" to $life and returns "hard"
"hard" -1 casts "hard" to an integer to do a math operation, "hard"
casts to 0
0 -1 is -1, so -1 is printed
> print &quo
download
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
I guess that's because there is no "last week" to show ;)
David
Nuno Lopes wrote:
Hello all,
Today I've released the new version of the gcov website
(http://gcov.php.net/).
It already built a full PHP 5.2 release with most extensions
enabled and it
is now building P
Hello Internals.
I'm not sure how many of you know about Phalanger [1][2]. For those who
don't, it's a fairly complete PHP language compiler, compiling PHP5 sources
into MSIL bytecodes, which can then be executed on the .NET platform or
Mono. Since the .NET framework makes heavy use of namespac
y is not an argument against them.
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
. The meeting notes much rather
say "mmmh okay we'll think about it, and if we like the idea, Marcus
is gonna implement it". I'm glad that was clarified now, thanks :)
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
tant feature for us.
Very wall said, Hans, and I totally agree. It's much needed, and I
believe any FOSS project that is OO based would applaud the
introduction of namespaces.
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Contribute to both DB_Table and MDB2_Table.
I've been corresponding with Mark Weisemann,
who will approve this.
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
s and executing
IMS transactions.
Who should I discuss it with? What do I have to do?
Thank you for your help.
Regards,
David OURY
[EMAIL PROTECTED]
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Thank you for the tip. I engage the process right away :)
The beta version of this extension works fine, but it still requires a few more
features and more stabilization though.
David OURY
[EMAIL PROTECTED]
-Message d'origine-
De : Johannes Schlüter [mailto:[EMAIL PROTECTED]
E
First of all, this doesn't seem like a very good idea to do.. My suggestions
below are for the first idea (throw a warning/error if a variable changes
type).
Second, I have never hacked the engine, and don't really have any ideas on
how it accutually works, I'm just guessing here.
Next, my fir
With ze_fetch_arguments I meant zend_parse_parameters (just a small
spelling error.. ;-) )
--
// DvDmanDT
mail: dvdmandt¤telia.com
msn: dvdmandt¤hotmail.com
""Corne"" <[EMAIL PROTECTED]> skrev i meddelandet
news:[EMAIL PROTECTED]
> Hi,
>
> I was trying to make PHP a bit more type-safe, but until
less boilerplate code.
Would fluid interfaces still be possible?
public function setFoo($this->foo) { return $this; }
Cheers,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
uo Ohgaki
> yohg...@ohgaki.net
Yasuo,
Prehashing with sha512 means it is no longer blowfish. It is now a non-vetted
DIY algorithm. The whole point of password_hash is to avoid this type of thing,
and should be clearly discouraged in the documentation.
It's a classic example of what not to do.
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
get it into
> 5.3. Once it stabilizes, we can backport it into 5.4, but for 5.3 better
> safe than sorry.
I’ll be working on a fix this week. If you can wait a few days, that’d be
grand; if not, then no biggie.
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
rmance gain.
>
> Cheers,
> Mike
>
>
> --
> PHP Internals - PHP Runtime Development Mailing List
> To unsubscribe, visit: http://www.php.net/unsub.php
Cheers,
David Dai
a request handler uses at most once,
I'm not sure such a change is worth it.
David
On 17 Aug 2014, at 04:18, Thomas Bley wrote:
> Since we get JSON data, I would also consider $_JSON.
>
> Regards
> Thomas
>
>
> Park Framework wrote on 17.08.2014 01:47:
>
>
On 17 Aug 2014, at 22:55, Chris Wright wrote:
> On 17 August 2014 11:49, David Zuelke wrote:
>> That does not make any sense; applications could accept XML, CSV or whatever
>> else just as well.
>>
>> The original proposal is not very useful. $_GET contains p
I'd like to see https://github.com/php/php-src/pull/694 /
https://github.com/php/php-src/pull/765 in so FPM in 5.4 will work properly
with Apache 2.4.10+'s mod_proxy_fcgi.
David
On 19 Aug 2014, at 01:59, Stas Malyshev wrote:
> Hi!
>
> Moving this out of other topics into
e SetHandler approach instead. If your version of
Apache 2.4 doesn't have that yet, use
https://gist.github.com/progandy/6ed4eeea60f6277c3e39
David
P.S.: if you also want to check if the .php file exists:
# make sure the file exists so that if not,
Apache will show its 404 page and not FPM
The fix is not broken. He's describing a different/additional issue. Things
have always been shaky with ProxyPass (that's
https://bugs.php.net/bug.php?id=65641) because it's a bag of hurt. That's the
whole reason Apache now has SetHandler for proxies!
On 08.09.2014, at 22:54, Stas Malyshev wr
On 05.09.2014, at 10:54, Remi Collet wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Le 05/09/2014 15:52, David Zuelke a écrit :
>
>> People should simply use the SetHandler approach instead.
>
> I agree, see https://bugzilla.redhat.com/1136290
>
On 29/10/2014, at 12:43 AM, Julien Pauli wrote:
> On Mon, Oct 27, 2014 at 6:27 PM, David Soria Parra wrote:
>> On 2014-10-26, Bob Weinand wrote:
>>>> Am 26.10.2014 um 17:23 schrieb Lester Caine :
>>>>
>>>> On 26/10/14 15:41, Bob Weinand wrote:
>
itted regardless of
log_level).
So in the interest of behavioral consistency between the two versions, I'd say
merge at least the zlog_set_level() move, but the pm.start_servers change is
not comparable to the IPv6 breakage because it doesn't change any logic, and we
now have tests in 5.6
Not a voter, but I don't really see the usefulness of this in core either.
Sent from my iPhone
> On 21 Nov 2014, at 11:45 am, Adam Harvey wrote:
>
> My -1 is pretty much the same as Levi's:
>
>> On 19 November 2014 13:57, Levi Morrison wrote:
>> - The RFC does not address how this is differ
es the same code will run fine,
and other times it breaks depending on what lines triggered the auto loader. If
you instantiate a Foo instance first, then instantiate a new foo, the code runs
fine, but if you try to instantiate a new foo first, we get a fatal error.
Cheers,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Shouldn't this be directed to the webmaster mailing list?
php-webmas...@lists.php.net
Sent from my iPhone
> On 4 Jan 2015, at 4:45 am, Thomas Hruska wrote:
>
>> On 12/28/2014 4:47 PM, Thomas Hruska wrote:
>>> On 12/7/2014 10:52 PM, Thomas Hruska wrote:
On 11/29/2014 6:27 AM, Thomas Hruska
> On 4 Jan 2015, at 12:34 pm, Thomas Hruska wrote:
>
>> On 1/3/2015 4:56 PM, David Muir wrote:
>> Shouldn't this be directed to the webmaster mailing list?
>> php-webmas...@lists.php.net
>
> See below. They said that they don't have access to that ser
s "kind of a" stable sorting algo, so is it
stable only sometimes, or did you mean to say "a kind of"?
David
> On 05.01.2015, at 18:08, Xinchen Hui wrote:
>
> Hey:
>
> I was working on zend_qsort improvement. but I got a problem need
> to be disscuss
On 06.01.2015, at 05:42, Pierre Joye wrote:
> I am not sure about that. Introducing a not easy to catch BC break for
> 0.1% gain on function (or even for the whole app) is not very
> appealing.
>
> However, there is nothing in the documentation actually describing how
> it works and there are cl
into a separate package.
If I already have to install a package installer (php-pear) to install
extensions using pecl, then I see no reason why we can't say "install this
other installer instead".
If PEAR works with php7, then great, you can use that as your installer. If
not, use pickle, your distro's package manager, or download a precompiled
binary.
Cheers,
David
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
> On 3 Feb 2015, at 3:49 am, Rasmus Lerdorf wrote:
>
>> On 02/02/2015 08:38 AM, François Laupretre wrote:
>> Hi,
>>
>> Opening the vote for :
>>
>> https://wiki.php.net/rfc/streams-is-cacheable
>>
>> This RFC proposes a generic way for opcode caches to decide if a given URI
>> is cacheable o
4.7;)
>> (I have backports for f17)
> 18 is downloading at the moment, but I could not find on the Fedora site any
> reference to which versions of PHP and Apache were included ...
> It's the same with most distributions :)
> I'm not sure if Fedora even has a current Fir
301 - 400 of 1503 matches
Mail list logo