Search Results

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 …
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
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 …
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 …