Adam Franco

619
reputation
58 views

Registered User

name Adam Franco
member for 1 year
seen Dec 5 at 14:20
website
location Vermont, USA
age 29
5h
accepted session persistence
Dec
5
awarded  Organizer
Dec
5
revised ZEND Controllers — How to call an action from a different controller
edited tags
Dec
4
accepted Zend Framework: How to do a DB select with multiple params?
Dec
4
revised Zend Framework: How to do a DB select with multiple params?
Removed invalid part of the answer.
Dec
4
comment Zend Framework: How to do a DB select with multiple params?
I've now tested the first version and found it was resulting in the following SQL: SELECT group_members.* FROM group_members WHERE (user_id = 1, 1 AND group_id = 1, 1) BTW: You can use print $select->__toString(); to output example SQL from the statement. Anyway, it seems that passing and array of parameters actually doesn't work with Zend_Db_Select (I must have been confusing this with using PDO directly), so I've removed that invalid part of the answer.
Dec
4
comment Zend Framework: How to do a DB select with multiple params?
What database/adapter combination are you using?
Dec
4
comment Zend Framework: How to do a DB select with multiple params?
Strange, I've used both techniques in the past against MySQL using the PDO adapter. I guess I'll need to set up a table to test. It may be that your database type or adapter doesn't support the syntax I suggested.
Dec
4
revised Zend Framework: How to do a DB select with multiple params?
Added alternate version.
Dec
4
accepted Javascript Toggling
Dec
4
answered Zend Framework: How to do a DB select with multiple params?
Dec
4
comment Javascript Toggling
update: Added case for 'All Dates'.
Dec
4
revised Javascript Toggling
Added case for 'All Dates'
Dec
4
revised Javascript Toggling
Clarified whitespace changes.
Dec
4
answered Javascript Toggling
Dec
4
answered session persistence
Nov
5
asked How can I access the configuration of a Zend Framework application from a controller?
Oct
27
awarded  Popular Question
Oct
22
comment How can I determine if a PDO statement cursor is closed?
I'd like to keep returning results from the fist cursor, so I don't want to close it.
Oct
22
asked How can I determine if a PDO statement cursor is closed?
Oct
15
revised When would you need to use late static binding?
Fixed spelling: 'but' ==> 'butt'
Oct
15
revised PHP exec() return value for background process (linux)
Fixed a variable name
Oct
7
accepted PHP exec() return value for background process (linux)
Oct
7
answered PHP exec() return value for background process (linux)
Sep
21
awarded  Nice Answer
Sep
18
awarded  Yearling
Sep
7
awarded  Tumbleweed
Sep
6
comment MySQL UTF Text Capacity
An additional note: In MySQL 5, Innodb will only allow a key of 767 bytes, though fields that are not part of a key may be longer. Since the OP is using a utf8 character set and MySQL uses 3 bytes per character, a varchar field in a key will have a limit of 255.67 characters, which in practice means a maximum of 255 characters. As the OP only needs 250 chars, this should be sufficient.
Sep
6
comment Finding string-key in Javascript array
Just a note on why the OP sometimes worked: In JS Arrays are objects, so you can attach arbitrary properties to them as you can with any other object. As was found though, these additional properties can get lost if the array is serialized to its normal ['val 1', 'val 2', 'val 3, ...] syntax. Its likely that somewhere in JQuery or elsewhere a serialization/deserialization is happening to the array, and the additional properties are lost.
Sep
6
revised Is there any way to detect the target class in PHP 5 static methods?
improved grammer
Sep
6
accepted Is there any way to detect the target class in PHP 5 static methods?
Sep
6
answered Is there any way to detect the target class in PHP 5 static methods?
Sep
6
awarded  Commentator
Sep
6
comment Is there any way to detect the target class in PHP 5 static methods?
@S.Lott I fully agree that such a method would be a leaky abstraction if used in real code. In this case the method is just there to provide an understandable sample. My reason for wanting to determine the child class is so that I can make use of static instance creation methods that are shared by all members of a class hierarchy, yet still call the appropriate child-constructor.
Sep
6
revised Why do Ruby developers appear not to use UML?
fixed some grammer
Sep
5
answered PHP file_get_contents
Aug
31
asked Is it possible to set group-management rights on an Active Directory group via LDAP?
Aug
31
answered Why do Ruby developers appear not to use UML?
Aug
28
comment Is there an easy way in PHP to convert from strings like ‘256M’, ‘180K’, ‘4G’ to their integer equivalents?
I added the 'B' and the white-space matches to the regular expression to make the function more generally useful than just being able to parse the values returned by ini_get(). The more general version will also handle decimal sizes as well, i.e.: 2.25MB
Aug
27
comment Is there an easy way in PHP to convert from strings like ‘256M’, ‘180K’, ‘4G’ to their integer equivalents?
I was looking for this info in the description of the ini values and just about everywhere else other than the docs for the ini_get() function itself. Thanks for finding that.
Aug
26
asked Is there an easy way in PHP to convert from strings like ‘256M’, ‘180K’, ‘4G’ to their integer equivalents?
Jun
24
asked AD via LDAP - How can I return all ancestor groups from a query?