Re: [PHP-DEV] Give the Language a Rest motion

2006-03-09 Thread Benj Carson
fancy new language feature and stopping core language development altogether. Benj Carson [1] http://mapserver.gis.umn.edu/ [2] http://mapserver.gis.umn.edu/development/rfc/ms-rfc-1/ -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: Minor engine patch to facilitate PECL/operator

2006-02-16 Thread Benj Carson
that '<' and '>' always have to apply to the typical mathematical operations (e.g. $pacman < $ghost). Benj Carson PS: Is it a coincidence that goto support & operator overloading have the same author? ;) On Thursday 16 February 2006 15:55, Zeev Suraski wrote: >

Re: [PHP-DEV] ifsetor(), goto, 5.x, my two cents

2005-06-08 Thread Benj Carson
s helping of user comments to support proper usage idioms as well. Again, just my two cents, but as a developer, both of these constructs would be very useful, and I think they will only increase the utility of PHP. Benj Carson -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Function proposal

2005-05-16 Thread Benj Carson
uot;"; } } While I don't know if it *needs* to be in the core, if it were I'd certainly use it. My $0.02, Benj Carson -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] [PATCH] Support for geometric types in pg_convert()

2005-02-10 Thread Benj Carson
nterval types I wrote in a previous patch. If someone could review the patch and commit it, it would be much appreciated. The patch is against CVS HEAD. Thanks, Benj Carson [1] http://loki.digitaljunkies.ca/~benj/pgsql.c.diff.2.txt -- PHP Internals - PHP Runtime Development Mailing List

Re: [PHP-DEV] PHP 5.1

2005-02-06 Thread Benj Carson
On February 6, 2005 12:27 pm, Sean Coates wrote: > > This would break pretty much every application ever written. > Consider: > echo " href="http://www.yahoo.com/";>Yahoo!"; ?> > Yeah, I realise the output filter would have to be intelligent. It couldn't blindly filter every echoed string. > Y

Re: [PHP-DEV] PHP 5.1

2005-02-06 Thread Benj Carson
mn types. Our template objects and functions automatically use htmlentities() or addslashes() as required when outputting variables.) Just my $0.02, Benj Carson On February 6, 2005 10:21 am, Rasmus Lerdorf wrote: > Well, you already have the problem. The filter hook has been in PHP5 > for 2

Re: [PHP-DEV] snaps.php.net tarballs are broken

2004-11-07 Thread Benj Carson
On November 8, 2004 12:09 am, Derick Rethans wrote: > The machine is out of diskspace, I will fix it right now. > > Derick Looks much better now, thanks ;) Benj -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] snaps.php.net tarballs are broken

2004-11-07 Thread Benj Carson
I've attached a log of showing tar's output for a few of the tarballs. Let me know if you need more info. Thanks, Benj Carson Script started on Sun 07 Nov 2004 10:04:36 PM MST [EMAIL PROTECTED]:php$ wget http://snaps.php.net/php5-200411080330.tar.bz2 --22:04:43-- http://snaps.

Re: [PHP-DEV] Nesting level too deep - recursive dependency?

2004-10-18 Thread Benj Carson
If you use '===' it works as expected. I don't know if the fact that '==' doesn't work is a bug or not, however. Benj Carson On October 18, 2004 09:39 am, Francisco M. Marzoa Alonso wrote: > This code: > > > class TestClass { >

Re: [PHP-DEV] switch() and default:

2004-10-07 Thread Benj Carson
ith > "default" being the case that matches anything. This means you don't > wanna place the default case anywhere but at the bottom. > > Ron > > > "Benj Carson" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > > Hi,

Re: [PHP-DEV] switch() and default:

2004-10-07 Thread Benj Carson
Hi, Sorry, I forgot to CC my last reply to the list. I noticed similar behaviour and filed a bug report: 30285. The case described in the bug report is as follows: $x = "a"; switch ($x) { default: echo "default"; break; case "a": echo "a"; break; } // Prints "a" Even though the do

Re: [PHP-DEV] PHP 5.0.0 Test roll

2004-07-12 Thread Benj Carson
e($ch); $str2 = file_get_contents("http://www.php.net/";); echo $str2; // Note garbage at end of string if ($str1 != $str2) { echo "Both results differ.\n"; } else { echo "Both results are the same.\n"; } The latest snap (200407130430) seems to be just