allapacheinterviewquestions.blogspot.com
apache webserver interview questions and answers: April 2010
http://allapacheinterviewquestions.blogspot.com/2010_04_01_archive.html
Apache webserver interview questions and answers. Sunday, April 4, 2010. When i add RewriteRule in the htaccess its not working. First we need to check whether the mod rewrite module is installed in the server or not. If it is installed need to add a line. In the htaccess file. How the rewrite rule processed by the server. What is mod rewrite in apache. Is an apache module. It is used to manipulate the urls. How to start and stop apache server in linux. To stop the server. Subscribe to: Posts (Atom).
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: asort arsort diffrerences
http://allphpinterviewquestions.blogspot.com/2010/04/asort-arsort-diffrerences.html
PHP interview questions and answers collection. Friday, April 9, 2010. Question: what is the difference between asort and arsort? Asort - sorts an array. It maintains index values. Arsort- It sorts an array in reverse manner. Fruits = array("d" = "php", "a" = "interview", "b" = "questions", "c" = "answers");. Foreach ($fruits as $key = $val) {. Echo "$key = $val n";. The output is c = answers a = interview d = php b = questions. Foreach ($fruits as $key = $val) {. Echo "$key = $val n";. How to unset a re...
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: stristr trick questions
http://allphpinterviewquestions.blogspot.com/2010/04/stristr-trick-questions.html
PHP interview questions and answers collection. Thursday, April 8, 2010. What is output of the following. Echo stristr('user@EXAMPLE.com', 'R'); /. Echo stristr('user@EXAMPLE.com', 'r'); /. The stristr is case insensitive. Subscribe to: Post Comments (Atom). Apache websever interview questions. Linux based questions for LAMP developers. Difference between ksort and asort in php. Question about array sorts in php. Extract domain name from the url using regular exp. Substr - related questions. What is cook...
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: extract domain name from the url using regular expression
http://allphpinterviewquestions.blogspot.com/2010/04/extract-domain-name-from-url-using.html
PHP interview questions and answers collection. Thursday, April 8, 2010. Extract domain name from the url using regular expression. Question: How to extract domain name from a url using regular expressions. I'," http:/ blogger.com. Host = $matches[1];. Get last two segments of host name. Preg match('/[ .] .[ .] $/', $host, $matches);. Echo "domain name is: {$matches[0]} n";. Domain name is: blogger.com. Subscribe to: Post Comments (Atom). Apache websever interview questions. Substr - related questions.
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: what are the frameworks available in PHP
http://allphpinterviewquestions.blogspot.com/2010/04/what-are-frameworks-available-in-php.html
PHP interview questions and answers collection. Tuesday, April 6, 2010. What are the frameworks available in PHP. Subscribe to: Post Comments (Atom). Apache websever interview questions. Linux based questions for LAMP developers. Difference between ksort and asort in php. Question about array sorts in php. Extract domain name from the url using regular exp. Substr - related questions. Explain Static keyword in php. What is abstract class in php. What is inheritance in php? What is array in php. What is m...
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: difference between ksort and asort in php
http://allphpinterviewquestions.blogspot.com/2010/04/difference-between-ksort-and-asort-in.html
PHP interview questions and answers collection. Friday, April 9, 2010. Difference between ksort and asort in php. What is the difference between ksort and asort in php? Ksort - sorts an array by its key. Asort - sorts an array by its value. Resource = array("d" = "answers", "a" = "php", "b" = "interview", "c" = "questions");. Foreach ($resource as $key = $val) {. Echo "$key = $val n";. The sample output is. A = php b = interview c = questions d = answers. Subscribe to: Post Comments (Atom). Differences b...
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: What is array in php
http://allphpinterviewquestions.blogspot.com/2010/04/what-is-array-in-php.html
PHP interview questions and answers collection. Tuesday, April 6, 2010. What is array in php. What is array in php and how to create an array in php? In php array is an ordered map. It contains values and keys. To create an array we need to use array. A= array('php','interview','questions','answers');. This creates simple array. Subscribe to: Post Comments (Atom). Apache websever interview questions. Linux based questions for LAMP developers. Difference between ksort and asort in php. What is array in php.
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: Disadvantages of PHP?
http://allphpinterviewquestions.blogspot.com/2010/04/disadvantages-of-php.html
PHP interview questions and answers collection. Tuesday, April 6, 2010. 1 It is a loosely typed language. 2 Multi threading is possible. 3 PHP lacks in performance while comparing with java.(thats why very big applications are desinged using java). 4 It lacks in security. Subscribe to: Post Comments (Atom). Apache websever interview questions. Linux based questions for LAMP developers. Difference between ksort and asort in php. Question about array sorts in php. Substr - related questions. What are the n...
allphpinterviewquestions.blogspot.com
PHP interview questions and answers collection: Explain Static keyword in php
http://allphpinterviewquestions.blogspot.com/2010/04/explain-static-keyword-in-php.html
PHP interview questions and answers collection. Tuesday, April 6, 2010. Explain Static keyword in php. Declaring class members or methods as static makes them accessible without needing an instantiation of the class. A member declared as static can not be accessed with an instantiated class object (though a static method can). Subscribe to: Post Comments (Atom). Apache websever interview questions. Linux based questions for LAMP developers. Difference between ksort and asort in php. What is array in php.