[PHP-DEV] Re: The PHP Installer (Windows)

2005-12-27 Thread Nicholas Telford
also enable the selected modules in php.ini. Quite frankly I've given up helping people who are too blind to read the descriptions on the download page, it does quite plainly state that the installer gives them core PHP only. Nicholas Telford Matt Wilson wrote: I'm curious why t

[PHP-DEV] Re: where to ask

2005-07-20 Thread Nicholas Telford
Post your question to php-general@lists.php.net this mailing list is for the development of PHP itself. Nicholas Telford D. Walsh wrote: This may not be the right place to ask but google has kicked my a$$ trying to find a solution. I've installed PHP-4.4.0, I have "register_glo

Re: [PHP-DEV] php 4.4 BC break

2005-07-12 Thread Nicholas Telford
. Just my thoughts. Nicholas Telford Chuck Hagenbuch wrote: Quoting Ilia Alshanetsky <[EMAIL PROTECTED]>: In this case the "facility" was implementing, poorly might I add a handler for a clearly incorrect behavior. Removing it was not only appropriate but necessary to encourage prope

[PHP-DEV] RE: Bringing the 'include' discussion to an end

2005-07-12 Thread Nicholas Telford
Isn't the point of bringing a discussion to an end that it actually ends? Please let it go. Nicholas Telford - Email provided by http://www.ntlhome.com/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.ph

Re: [PHP-DEV] php_pgsql.dll

2005-07-08 Thread Nicholas Telford
Regardless, you need to download the ZIP that is clearly stated on the downloads page. The installer contains no additional modules, this is also clearly stated. This question should have been posted to php.general or php.install, not internals. Nicholas Telford Christopher Kings-Lynne wrote

[PHP-DEV] PHP5.1b2 Typo in php.ini-recommended

2005-07-01 Thread Nicholas Telford
n as a bug since it's a Beta issue, appologies if this is the wrong place. Nicholas Telford -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [Fwd: [PHP] constant() - php5]

2005-07-01 Thread Nicholas Telford
ber is equivilent to it's quoted counter-part, the same must be true for strings. Nicholas Telford Jochem Maas wrote: Derick Rethans wrote: On Fri, 1 Jul 2005, Jochem Maas wrote: echo constant('CNST'); when: echo CNST; only triggers an E_NOTICE. (assuming, in both cases

Re: [PHP-DEV] In regards to E_STRICT and PHP5

2005-06-18 Thread Nicholas Telford
ey said, you can just insert the keywords and have them commented out until the entire app is ported. Sorry for the rather lengthy post, I've been watching these discussions with great interest over the last few days and have only now had the chance to post my thoughts. Nicholas Telford --

Re: [PHP-DEV] Re: Allow PDO::query() to return a subclass of PDOStatement

2005-05-18 Thread Nicholas Telford
Wez Furlong wrote: parent::method() should work, but the point is that if you add a foo() method in a class that extends PDO, at a time where there is no PDO::foo(), and you make it work in a particular way, and 6-18 months later, when PDO::foo() gets added and does something totally different. No

Re: [PHP-DEV] Re: Allow PDO::query() to return a subclass of PDOStatement

2005-05-18 Thread Nicholas Telford
Wez Furlong wrote: Just like extending any other built-in class, you need to be careful to not override built-in methods that either exist now or may exist in the future; you can very easily burn yourself 6 months down the track this way. It's generally a bad idea, and definitely something to avoid

[PHP-DEV] Re: Allow PDO::query() to return a subclass of PDOStatement

2005-05-18 Thread Nicholas Telford
Lukas Smith wrote: Nicholas Telford wrote: What I'm proposing is to allow PDO::query() to return a subclass of PDOStatement. This would allow abstractions to tailor the result set to their own needs while not (in theory) being too complicated to implement. My initial idea involves passi

[PHP-DEV] Allow PDO::query() to return a subclass of PDOStatement

2005-05-18 Thread Nicholas Telford
would be something like this: $results = $conn->query($sql,new ResultSet()); If I knew C, I'd write a patch for this, but since I don't, I thought I'd at least suggest this. Nicholas Telford -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] php suggestion

2005-02-14 Thread Nicholas Telford
David Kingma | jool.nl wrote: Quoting Ante Drnasin <[EMAIL PROTECTED]>: ex1: function AddToDb(mysql_scape_string($text)) { //enter $text to db } which would be the same as function AddToDb($text) { $text = mysql_escape_string($text); //enter $text to db } ex2: function removeDigitsFromT

Re: [PHP-DEV] php suggestion

2005-02-14 Thread Nicholas Telford
more overhead to the processing of parameter lists. Nicholas Telford -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php