PHP Interview Questions and Answers - 2

Question: 6

Name a new feature introduced with PHP 5?

PHP 5 introduces (among other things) SQLite support, improved XML support, and a significantly improved object model.

Question: 7

What do the script PHP delimiter tags look like?

. . . .<script language="php">
. . . .// your code here
. . . .</script>.

Question: 8

Which function would you use to merge two arrays?

You can merge arrays with the array_merge() function.

Question: 9

Which superglobal associative array contains all values submitted as part of a GET request?

The superglobal array $ GET contains all values submitted as part of a GET request.

Question: 10

 How would you loop through an array?

You can loop through an array using the foreach statement.

Related Questions