Saturday, June 4, 2016

PHP Interview Questions Part 3

PHP Interview Questions

1. How can I 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.I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what’s the problem?

PHP Interpreter treats numbers beginning with 0 as octal. Look at the similar PHP interview questions for more numeric problems.Would 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.

2. What are the different tables present in MySQL? Which type of table is generated when we are creating a table in the following syntax: create table employee(eno int(2),ename varchar(10))?

(Answer) Total 5 types of tables we can create

1. MyISAM2. Heap

3. Merge

4. INNO DB

5. ISAM

MyISAM is the default storage engine as of MySQL 3.23. When you fire the above create query MySQL will create a MyISAM table.

2. How can we encrypt the username and password using PHP?

Answer1

You can encrypt a password with the following Mysql>SET PASSWORD=PASSWORD(“Password”);

Answer2

You can use the MySQL PASSWORD() function to encrypt username and password. For example,

INSERT into user (password, …) VALUES (PASSWORD($password”)), …);

3. How do you pass a variable by value?

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

4. What is the functionality of the functions STRSTR() and STRISTR()?

string strstr ( string haystack, string needle ) returns part of haystack string from the first occurrence of needle to the end of haystack. This function is case-sensitive.

stristr() is idential to strstr() except that it is case insensitive.

5. What is 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.


6. What is 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.

7. How do I find out the number of parameters passed into function. ?

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

8. What is 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

9. If the variable $a is equal to 5 and variable $b is equal to character a, what’s the value of $$b?

100, it’s a reference to existing variable.

10. Are objects passed by value or by reference?

Everything is passed by value.

11. What are the differences between DROP a table and TRUNCATE a table?

DROP TABLE table_name – This will delete the table and its data.

TRUNCATE TABLE table_name – This will delete the data of the table, but not the table definition.