1
vote
5answers
234 views
Is there any way to detect the target class in PHP 5 static methods?
Below is an example class hierarchy and code. What I'm looking for is a way to determine if 'ChildClass1' or 'ChildClass2' had the static method whoAmI() called on it without re-implementing it in …
1
vote
2answers
282 views
What is the best way to select attributes for all members of an AD LDAP group from PHP?
I need to select a number of attributes for all of the users in a particular group from a PHP application. I realize that I could query the 'member' attribute of the group to get the dn of every me …
3
votes
1answer
212 views
AD via LDAP - How can I return all ancestor groups from a query?
I am querying Active Directory via LDAP (from Java and PHP) to build a list of all groups that a user is a member of. This list must contain all least all groups (organizational-units optional) tha …
2
votes
3answers
90 views
Is there an easy way in PHP to convert from strings like ‘256M’, ‘180K’, ‘4G’ to their integer equivalents?
I need to test the value returned by ini_get('memory_limit') and increase the memory limit if it is below a certain threshold, however this ini_get('memory_limit') call re …
0
votes
0answers
41 views
Is it possible to set group-management rights on an Active Directory group via LDAP?
I am building a self-service group management web-app that will allow users to create and manage groups in our Active Directory under a particular OU.
I have successfully written a PHP app …
0
votes
0answers
42 views
How can I determine if a PDO statement cursor is closed?
I have a search class that keeps prepared PDO statements around for re-execution with new parameters each time the search is run. A conflict occurs if a second search is run while a previous search …
2
votes
2answers
91 views
How can I access the configuration of a Zend Framework application from a controller?
I have a Zend Framework application based on the quick-start setup.
I've gotten the demos working and am now at the …
3
votes
When would you need to use late static binding?
One primary need I have for late static binding is for a set of static instance-creation methods.
This …
1
vote
1
vote
Is there any way to detect the target class in PHP 5 static methods?
Now that PHP 5.3 is widely available in the wild, I wanted to put together a summary answer to this question to reflect newly available techniques.
As mentioned in the other answers, PHP 5 …
2
votes
PHP exec() return value for background process (linux)
My guess is that what you are trying to do is not directly possible. By backgrounding the process, you are letting your PHP script continue (and potentially exit) before a result exists.
A …
