Operational PHP Developer Interview Preparation Guide
Download PDF

PHP Developer Frequently Asked Questions by expert members with experience in PHP Developer. These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts

57 PHP Developer Questions and Answers:

Table of Contents:

Operational  PHP Developer Job Interview Questions and Answers
Operational PHP Developer Job Interview Questions and Answers

1 :: What are php filter functions?

No Answer is Posted For this Question
Be the First to Post Your Answer Now

2 :: What are php validate filters?

FILTER_VALIDATE_BOOLEAN
Returns TRUE for "1", "true", "on" and "yes". Returns FALSE otherwise.

FILTER_VALIDATE_EMAIL
Validates value as e-mail.

FILTER_VALIDATE_FLOAT
Validates value as float.

FILTER_VALIDATE_INT
Validates value as integer optionally from the specified range.

FILTER_VALIDATE_IP
Validates value as IP address, optionally only IPv4 or IPv6 or not from private or reserved ranges.

FILTER_VALIDATE_REGEXP
Validates value against regexp, a Perl-compatible regular expression.

FILTER_VALIDATE_URL
Validates value as URL, optionally with required components.

3 :: Described PHP?

The PHP Hypertext Preprocessor is a programming language that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications.

4 :: Described session in PHP?

A session is a logical object created by the PHP engine to allow you to preserve data across subsequent HTTP requests.

There is only one session object available to your PHP scripts at any time. Data saved to the session by a script can be retrieved by the same script or another script when requested from the same visitor.

Sessions are commonly used to store temporary data to allow multiple PHP pages to offer a complete functional transaction for the same visitor.

5 :: What is PEAR in PHP?

PEAR is the next revolution in PHP. This repository is bringing higher level programming to PHP. PEAR is a framework and distribution system for reusable PHP components. It eases installation by bringing an automated wizard, and packing the strength and experience of PHP users into a nicely organised OOP library. PEAR also provides a command-line interface that can be used to automatically install "packages"

6 :: Can you please explain the difference between $message and $$message?

They are both variables. But $message is a variable with a fixed name. $$message is a variable who's name is stored in $message. For example, if $message contains "var", $$message is the same as $var.

$message is a simple variable whereas $$message is a reference variable. Example:
$user = 'bob'
is equivalent to
$holder = 'user';
$$holder = 'bob';

7 :: How you can protect special characters in Query String?

If you want to include special characters like spaces in the query string, you need to protect them by applying the urlencode() translation function. The script below shows how to use urlencode():

<?php
print("<html>");
print("<p>Please click the links below"
." to submit comments about GlobalGuideLine.com:</p>");
$comment = 'I want to say: "It's a good site! :->"';
$comment = urlencode($comment);
print("<p>"
."<a href="processing_forms.php?name=Guest&comment=$comment">"
."It's an excellent site!</a></p>");
$comment = 'This visitor said: "It's an average site! :-("';
$comment = urlencode($comment);
print("<p>"
.'<a href="processing_forms.php?'.$comment.'">'
."It's an average site.</a></p>");
print("</html>");
?>

9 :: List the purpose of the following files having extensions: frm, myd, and myi? What these files contain?

In MySQL, the default table type is MyISAM.
Each MyISAM table is stored on disk in three files. The files have names that begin with the table name and have an extension to indicate the file type.

The '.frm' file stores the table definition.
The data file has a '.MYD' (MYData) extension.
The index file has a '.MYI' (MYIndex) extension,

10 :: How to find out the number of parameters passed into function9.?

func_num_args() function returns the number of parameters passed in.

11 :: Can you please explain the difference between ereg_replace() and eregi_replace()?

eregi_replace() function is identical to ereg_replace() except that it ignores case distinction when matching alphabetic characters.

12 :: Described the functionality of the function strstr and stristr?

strstr() returns part of a given string from the first occurrence of a given substring to the end of the string. For example: strstr("user@example.com","@") will return "@example.com".
stristr() is idential to strstr() except that it is case insensitive.

13 :: How to send mail using JavaScript?

No. There is no way to send emails directly using JavaScript.
But you can use JavaScript to execute a client side email program send the email using the "mailto" code. Here is an example:

function myfunction(form)
{
tdata=document.myform.tbox1.value;
location="mailto:mailid@domain.com?subject=...";
return true;
}

14 :: When you supposed to use endif to end the conditional statement?

When the original if was followed by : and then the code block without braces.

15 :: How to pass a variable by value?

Just like in C++, put an ampersand in front of it, like $a = &$b.

16 :: How to encrypt the username and password using PHP?

You can encrypt a password with the following Mysql>SET PASSWORD=PASSWORD("Password");
Or:
You can use the MySQL PASSWORD() function to encrypt username and password. For example,
INSERT into user (password, ...) VALUES (PASSWORD($password")), ...);

17 :: How to create table using PHP?

If you want to create a table, you can run the CREATE TABLE statement as shown in the following sample script:

<?php
include "mysql_connection.php";
$sql = "CREATE TABLE ggl_links ("
. " id INTEGER NOT NULL"
. ", url VARCHAR(80) NOT NULL"
. ", notes VARCHAR(1024)"
. ", counts INTEGER"
. ", time TIMESTAMP DEFAULT sysdate()"
. ")";
if (mysql_query($sql, $con)) {
print("Table ggl_links created.n");
} else {
print("Table creation failed.n");
}

mysql_close($con);
?>
Remember that mysql_query() returns TRUE/FALSE on CREATE statements. If you run this script, you will get something like this:
Table ggl_links created.

18 :: List the different tables present in MySQL?

Total 5 types of tables we can create:
1) MyISAM
2) Heap
3) Merge
4) INNO DB
5) ISAM

19 :: Can I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?

In this example it wouldn't matter, since the variable is all by itself, but if you were to print something like "{$a},000,000 mln dollars", then you definitely need to use the braces.

20 :: I am trying to assign variable the value of 0123, but it keeps coming up with a different number, what is the problem?

PHP Interpreter treats numbers beginning with 0 as octal. Look at the similar PHP interview questions for more numeric problems.

21 :: How to execute a PHP script using command line?

Just run the PHP CLI (Command Line Interface) program and provide the PHP script file name as the command line argument. For example, "php myScript.php", assuming "php" is the command to invoke the CLI program.
Be aware that if your PHP script was written for the Web CGI interface, it may not execute properly in command line environment.

22 :: Can you please explain the difference between mysql_fetch_object and mysql_fetch_array?

MySQL fetch object will collect first single matching record where mysql_fetch_array will collect all matching records from the table in an array.

23 :: How to get uploaded file information in the Receiving Script?

Once the Web server received the uploaded file, it will call the PHP script specified in the form action attribute to process them. This receiving PHP script can get the uploaded file information through the predefined array called $_FILES. Uploaded file information is organized in $_FILES as a two-dimensional array as:

* $_FILES[$fieldName]['name'] - The Original file name on the browser system.
* $_FILES[$fieldName]['type'] - The file type determined by the browser.
* $_FILES[$fieldName]['size'] - The Number of bytes of the file content.
* $_FILES[$fieldName]['tmp_name'] - The temporary filename of the file in which the uploaded file was stored on the server.
* $_FILES[$fieldName]['error'] - The error code associated with this file upload.

The $fieldName is the name used in the <INPUT TYPE=FILE, NAME=fieldName>.

24 :: Define urlencode and urldecode?

urlencode() returns the URL encoded version of the given string. URL coding converts special characters into % signs followed by two hex digits. For example: urlencode("10.00%") will return "10%2E00%25". URL encoded strings are safe to be used as part of URLs.
urldecode() returns the URL decoded version of the given string.

string urlencode(str) - Returns the URL encoded version of the input string. String values to be used in URL query string need to be URL encoded. In the URL encoded version:

Alphanumeric characters are maintained as is.
Space characters are converted to "+" characters.
Other non-alphanumeric characters are converted "%" followed by two hex digits representing the converted character.
string urldecode(str) - Returns the original string of the input URL encoded string.

For example:
$discount ="10.00%";
$url = "http://domain.com/submit.php?disc=".urlencode($discount);
echo $url;
You will get "http://domain.com/submit.php?disc=10%2E00%25".

25 :: Can you please explain the difference between require and include, include_once?

require_once() and include_once() are both the functions to include and evaluate the specified file only once. If the specified file is included previous to the present call occurrence, it will not be done again.
But require() and include() will do it as many times they are asked to do.

The include_once() statement includes and evaluates the specified file during the execution of the script. This is a behavior similar to the include() statement, with the only difference being that if the code from a file has already been included, it will not be included again. The major difference between include() and require() is that in failure include() produces a warning message whereas require() produces a fatal errors.
PHP Developer Interview Questions and Answers
57 PHP Developer Interview Questions and Answers