On my development machine my application used up about 4-6MB of memory per request. After switching to a production machine those numbers went as high as 21+MB per request, without any speed improveme
I created an ErrorController using the zend framework tool, what I don\'t understand is h开发者_开发问答ow do i actually use it?
With PHP is it even Possible to Pass arrays by Reference ? or its a Bug Only for Me. class MyStack{ private $_storage = array();
I am using the core Auth component. I have created a user login th开发者_StackOverflow社区at manages all of the permissions. The way I am implementing the login monitoring is by checking for $this->
i have a problem when i insert some articles which includes paragraph to database at the time of retrieval it display article but without paragraph.
how to I convert a unix timestamp 1280214000 to human readab开发者_Go百科le date?you can also use the date function
I have extended PDOStatement and modified the fetch() method to typecast values of the types timestamp and arrays, in PostgreSQL, to DateTime and native array. This works as intended but I can\'t over
I\'m using DomDocument to query for html elements. when i use $obj->textContent or $obj->nodeValue it returns only the texts that include in the element, it does not return the html representati
I\'ve been writing some code for PHP 5.3, and I wanted to do something similar to the code I\'m showing below. I expect this code to print \'hellohello\', but it prints \'hello\' instead, and an error
I\'m writing a library in PHP 5.3, the bulk of which is a class with several static properties that is extended from by subclasses to allow zero-conf for child classes.