Re: [PHP] case-insensitive $_REQUEST,$_GET,$_POST keys?

2012-04-13 Thread David OBrien
On Fri, Apr 13, 2012 at 1:13 PM, tamouse mailing lists < tamouse.li...@gmail.com> wrote: > Anyone have a quick-and-dirty way to check $_REQUEST keys that is > case-insensitive? > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > this wh

[PHP] Upcoming Outage: php.net

2012-04-13 Thread Daniel Brown
Greetings, all; This coming Monday, 16 April, 2012, between the hours of 18:00 and 20:00 EDT (22:00 to 00:00 GMT), the one of the primary php.net servers will be undergoing a critical preventative maintenance operation. In this two-hour maintenance window, we do expect a period of interru

Re: [PHP] Upcoming Outage: php.net

2012-04-13 Thread Govinda
>This coming Monday, 16 April, 2012, between the hours of 18:00 and > 20:00 EDT (22:00 to 00:00 GMT), the one of the primary php.net servers > will be undergoing a critical preventative maintenance operation. > [snip] thanks for the heads up! :-) -- PHP General Mailing List (http://www.php

[PHP] tempnam() not working as expected...

2012-04-13 Thread tamouse mailing lists
Can someone explain the following to me: /Users/tamara/Sites/gallery/lib/common/t/dirGuWOLW is a directory /private/var/folders/pI/pIx-p0mhH5eEQ64yAiDQmE+++TI/-Tmp-/fileC7Rnzg is a directory Why isn't the second tempnam using the directory path I pass to it? The strange thing I notice is th

Re: [PHP] case-insensitive $_REQUEST,$_GET,$_POST keys?

2012-04-13 Thread tamouse mailing lists
On Fri, Apr 13, 2012 at 12:22 PM, David OBrien wrote: > On Fri, Apr 13, 2012 at 1:13 PM, tamouse mailing lists > wrote: >> >> Anyone have a quick-and-dirty way to check $_REQUEST keys that is >> case-insensitive? >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, visit:

Re: [PHP] tempnam() not working as expected...

2012-04-13 Thread Matijn Woudt
On Sat, Apr 14, 2012 at 12:05 AM, tamouse mailing lists wrote: > Can someone explain the following to me: > > > $d=tempnam(".","dir");          /* create a temp named file */ > unlink($d);                     /* unlink it because we're going to make it a > directory */ > mkdir($d,777,true);