Hi,
What's about adding what screan (http://pecl.php.net/scream) to the
standard PHP? Everyone needs it and it should be possible to do that
without having to install an extension.
Comments/objections?
Cheers
Pierre
While a very useful feature, I think people who need it definitely
will have the ability to run 2-3 commands that it takes to install a
PECL extension.
Ilia Alshanetsky
Hi,
What's about adding what screan (http://pecl.php.net/scream) to the
standard PHP? Everyone needs it and it should be possible to do that
without having to install an extension.Comments/objections?
Cheers
Pierre
2009/2/26 Ilia Alshanetsky ilia@prohost.org:
While a very useful feature, I think people who need it definitely will have
the ability to run 2-3 commands that it takes to install a PECL extension.Ilia Alshanetsky
Hi,
What's about adding what screan (http://pecl.php.net/scream) to the
standard PHP? Everyone needs it and it should be possible to do that
without having to install an extension.Comments/objections?
Cheers
Pierre
http://blog.thepimp.net | http://www.libgd.org
--
--
Ilia, but us poor, useless, can't compile a shopping list, windows
users need binaries. So making it core would be nice.
--
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
"Standing on the shoulders of some very clever giants!"
Compile a shopping list? How frequently are you deploying PHP? ;-)
Even if you need to compile 4-5 PECL extensions its probably something
you do only every few months anyway.
We used to have PECL win32 binaries, I don't see them on
windows.php.net, but perhaps they are else where.
Based on your argument we may as well drop PECL and put all extensions
into core.
Ilia Alshanetsky
Ilia, but us poor, useless, can't compile a shopping list, windows
users need binaries. So making it core would be nice.--
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
"Standing on the shoulders of some very clever giants!"
Compile a shopping list? How frequently are you deploying PHP? ;-) Even if
you need to compile 4-5 PECL extensions its probably something you do only
every few months anyway.
We used to have PECL win32 binaries, I don't see them on windows.php.net,
but perhaps they are else where.Based on your argument we may as well drop PECL and put all extensions into
core.
I can provide a bin for this one, that's no issue. As having this
feature in the core is a non issue as well (not as an extension but in
the engine).
--
Pierre
2009/2/27 Ilia Alshanetsky ilia@prohost.org:
Compile a shopping list? How frequently are you deploying PHP? ;-) Even if
you need to compile 4-5 PECL extensions its probably something you do only
every few months anyway.
We used to have PECL win32 binaries, I don't see them on windows.php.net,
but perhaps they are else where.Based on your argument we may as well drop PECL and put all extensions into
core.Ilia Alshanetsky
No, no, no. Ideally win32 pre-compiled PECL binaries would keep me
happy. Having http://pecl4win.php.net/ working would probably be best.
Ilia, but us poor, useless, can't compile a shopping list, windows
users need binaries. So making it core would be nice.--
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
"Standing on the shoulders of some very clever giants!"
--
Richard Quadling
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
"Standing on the shoulders of some very clever giants!"
Pierre Joye wrote:
Hi,
What's about adding what screan (http://pecl.php.net/scream) to the
standard PHP? Everyone needs it and it should be possible to do that
without having to install an extension.Comments/objections?
If it can be done easily and unobtrusively to existing code, this would
be useful to me for those hard-to-catch bugs in old code. Of course, I
am one of the people Ilia is referring to who can do a 3-4 second "pecl
install" pretty easily, so I don't have a strong stake in the debate
either way :)
Greg
Pierre Joye wrote:
Hi,
What's about adding what screan (http://pecl.php.net/scream) to the
standard PHP? Everyone needs it and it should be possible to do that
without having to install an extension.
Comments/objections?
If it can be done easily and unobtrusively to existing code, this
would
be useful to me for those hard-to-catch bugs in old code. Of
course, I
am one of the people Ilia is referring to who can do a 3-4 second
"pecl
install" pretty easily, so I don't have a strong stake in the debate
either way :)
I'd rather see this as part of E_ALL, or maybe E_NOSUPPRESS (or
something that sounds better).
As far as the former, (E_ALL), I'd kind of actually hope that it gave
me ALL, not just ALL (...except suppressed errors). Actually,
I've assumed it would.
That being said, I:
a) Don't mind typing a few lines to install something
b) Wonder why "ALL" would be a limited subset of errors, with @
errors ignored.
-Bop
So, my understanding of the shut-up operator was that it temporarily set
error_reporting to zero, so you could define a custom error handler that
would do the equivalent simply by not honoring error_reporting = 0.
Something that would be more useful, and that I don't think is
implementable in PHP, would be a wrapper around all user error handlers,
since userland code can override the current error handler.
Cheers,
Edward