[PHP] What is valid for a named parameter in a prepared query using PDO_SQLSRV.

2011-08-01 Thread Richard Quadling
Hi. Just started using PDO with the nice and shiny SQLSRV driver form Microsoft for SQL Server. I seem to be having an issue with named parameters in prepared statements. Are there limitations to the characters that can be used for named parameters. UPPER, lower and MixedCase all seem OK, but I

[PHP] 3.1.9 build of APC win 64

2011-08-01 Thread Dan Baughman
Does anyone know where you can download a 64 bit build of apc 3.1.9? I want to take advantage of some of the stuff they've pushed out since 3.1.8 for windows, but can't find a 64 bit binary to save my life.

Re: [PHP] 3.1.9 build of APC win 64

2011-08-01 Thread Lester Caine
Dan Baughman wrote: Does anyone know where you can download a 64 bit build of apc 3.1.9? I want to take advantage of some of the stuff they've pushed out since 3.1.8 for windows, but can't find a 64 bit binary to save my life. http://www.anindya.com/php-5-3-6-x64-64-bit-for-windows/ is still 3

Re: [PHP] 3.1.9 build of APC win 64

2011-08-01 Thread Dan Baughman
Thank you. On Mon, Aug 1, 2011 at 9:20 AM, Lester Caine wrote: > Dan Baughman wrote: > >> Does anyone know where you can download a 64 bit build of apc 3.1.9? >> >> I want to take advantage of some of the stuff they've pushed out since >> 3.1.8 >> for windows, but can't find a 64 bit binary to s

[PHP] Keyword Constructor

2011-08-01 Thread Ren
For a long time I wanted keyword parameters in PHP. But thanks to newer features like traits and reflection classes I have come up with something that looks pretty close. trait KeywordConstructor { public function __construct($members) { $class = new ReflectionClass($this)