-1
votes
Dynamic class variables
For associative arrays you can use the function "isset()" to see if the array contains a value on that particular key.
if(isset($this->data['firstValue'])) {
// do anything w …
0
votes
Simplest PHP Routing framework .. ?
You could easily execute the right function on the associative class using reflection. I would suggest using a /controller/action structure.
Something I made myself a few days back.
…
3
votes
PHP Optimization Tips
There are several ways to improve performance including:
Use a php accelerator.
Make use of Caching.
Best of all, use a profiler to actually pin-point your performan …
1
vote
PHP: Storing ‘objects’ inside the $_SESSION.
I would suggest don't use state unless you absolutely need it. If you can rebuild the object without using sessions do it.
Having states in your webapplication makes the application more complex t …
2
votes
Bitwise Flags abandoned ?
If you have an already complex application, why would you make it more complex by using bitwise flags. I personally wouldn't use this kind flags if there weren't any more upsides then just being co …
