SlideShare a Scribd company logo
1 of 40
Download to read offline
Interview questions
1. Who is the father of PHP ?
Rasmus Lerdorf
PHP INTERVIEW QUESTIONS WITH ANSWER
2. What is the different between $name and $$name?
$name is variable where as $$name is a reference variable.
Like,
$name=sonia
$$name=singh
So, $sonia=singh
PHP INTERVIEW QUESTIONS WITH ANSWER
3. What are the method available in form submitting?
GET and POST
PHP INTERVIEW QUESTIONS WITH ANSWER
4. How we can get browser properties using PHP ?
<?php
echo $SERVER[‘HTTP_USER_AGENT’].”nn”;
$browser=get_browser(null,true);
print_r($browser);
?>
PHP INTERVIEW QUESTIONS WITH ANSWER
5. What is a Session?
 A session is a logical object created by PHP engine to allow you
to preserve data across subsequent HTTP requests.
 Session are commonly used to store data temporary and also it
allow to multiple pages for the same visitor.
 Once browser will close, the session will be closed.
PHP INTERVIEW QUESTIONS WITH ANSWER
6. How we can register variables into the Session?
<?php
session_register($ur_session_var);
?>
PHP INTERVIEW QUESTIONS WITH ANSWER
7. What are the ways are there to pass the variables
through the navigation between pages?
Register the variable into the session
Pass the variable as a cookie
Pass the variable as a part of the URL
PHP INTERVIEW QUESTIONS WITH ANSWER
8. How to find the total number of elements of array?
sizeof($arr_var);
count($arr_var);
PHP INTERVIEW QUESTIONS WITH ANSWER
9. How we can create database using PHP ?
mysql_create_db();
PHP INTERVIEW QUESTIONS WITH ANSWER
10. What is the functionality of function strstr and stristr ?
 strstr() returns part of a given string from the occurrence of a
given substring to the end of the string.
 For example:
strstr(“user@gmail”,”@”) will return “@gmail”.
 stristr() is indential to strstr() except that it is case sensitive.
PHP INTERVIEW QUESTIONS WITH ANSWER
11. What are encryption function in PHP ?
CRYPT() , MD5()
PHP INTERVIEW QUESTIONS WITH ANSWER
12. How to store uploaded file to the final location?
move_uploaded_file(string filename,
string distination)
PHP INTERVIEW QUESTIONS WITH ANSWER
13. Explain mysql_error()
The mysql_error() will tell us what was the wrong with our
querry, similar to the message we would receive at the MYSQL
console.
PHP INTERVIEW QUESTIONS WITH ANSWER
14. What is Constructor and Destructor ?
Constructor:
PHP allows us to declare constructor method for a classes. Classes which have
a constructor method call this method on each newly-created object. So it is
suitable for any initialization that the object may need before it is used.
Destructor:
PHP 5 introduced a destructor concept similar to that other object oriented
languages such as C++. When the object is explicitly destroyed or in any order in
shutdown sequence.
PHP INTERVIEW QUESTIONS WITH ANSWER
15. Explain the visibility of the property or method ?
 The visibility of a property or method must be defined by prefixing the declaration
with the keywords public, protected or private.
 Class members declared public can be accessed everywhere.
 Members declared protected can be accessed only within the class itself and by
inherited and parent classes.
 Members declared as private may only be accessed by the class that defines the
member.
PHP INTERVIEW QUESTIONS WITH ANSWER
16. What are the different between GET & POST method?
1. GET Method have some limit like only 2Kb data able to send for request
But in POST method unlimited data can we send.
2. When we use GET method requested data show in URL but
Not in POST method so POST method is good for send sensitive request.
PHP INTERVIEW QUESTIONS WITH ANSWER
17. What are the different between require and include?
Both include and require used to include a file but when included file not found
Include send Warning where as Require send Fatal Error.
PHP INTERVIEW QUESTIONS WITH ANSWER
18. What is the use of header()in PHP ?
 The header() function sends a raw HTTP header to a client.
 We can use herder() function for redirection of pages.
 It is important to notice that header() must be called before any actual output is
seen.
PHP INTERVIEW QUESTIONS WITH ANSWER
19. List out the predefined classes in PHP.
Directory
stdClass
__PHP_Incomplete_Class
exception
php_user_filter
PHP INTERVIEW QUESTIONS WITH ANSWER
20. What type of inheritance supported by PHP ?
In PHP an extended class is always dependent on a single base class, that is,
multiple inheritance is not supported. Classes are extended using the keyword
'extends'.
PHP INTERVIEW QUESTIONS WITH ANSWER
21. How encrypt the username and password ?
You can encrypt a password with the following
Mysql>SET PASSWORD=PASSWORD("Password");
We can encode data using
base64_encode($string)
and can decode using
base64_decode($string);
PHP INTERVIEW QUESTIONS WITH ANSWER
22. What is the different between explode and split ?
Split function splits string into array by regular expression. Explode splits a string into
array by string.
For Example:
explode(" and", "India and Pakistan and Srilanka");
split(" :", "India : Pakistan : Srilanka");
Both of these functions will return an array that contains India, Pakistan, and Srilanka
PHP INTERVIEW QUESTIONS WITH ANSWER
23. How do you define a constant ?
Constants in PHP are defined using define() directive,
like define("MYCONSTANT", 100);
PHP INTERVIEW QUESTIONS WITH ANSWER
24. how do you pass variable by value in PHP ?
Just like in C++, put ampersand in front of variable.
$a = &$b;
PHP INTERVIEW QUESTIONS WITH ANSWER
25. What does a special set of tags <?= and ?> do in PHP?
The output is displayed directly to the browser.
PHP INTERVIEW QUESTIONS WITH ANSWER
26. How do you call a constructor for a parent class ?
parent::constructor($value)
PHP INTERVIEW QUESTIONS WITH ANSWER
27. What is a special meaning of __sleep and __wakeup ?
__sleep returns the array of all the variables than need to be saved, while
__wakeup retrieves them.
PHP INTERVIEW QUESTIONS WITH ANSWER
28. What is the different between PHP & JavaScript ?
 JavaScript is a client side scripting language, so javascript can make popups
and other things happens on someone’s PC.
 While PHP is server side scripting language so it does every stuff with the
server.
PHP INTERVIEW QUESTIONS WITH ANSWER
29. What is the different between unlike() and unset() ?
unlink() deletes the given file from the file system.
unset() makes a variable undefined.
PHP INTERVIEW QUESTIONS WITH ANSWER
30. How many ways can we get the value of current
session id ?
session_id() returns the session id for the current session.
PHP INTERVIEW QUESTIONS WITH ANSWER
31. What are the default session time and path ?
default session time in PHP is 1440 seconds or 24 minutes
Default session save path id temporary folder /tmp
PHP INTERVIEW QUESTIONS WITH ANSWER
32. For image work, which library ?
• we will need to compile PHP with the GD library of image functions for this
to work.
• GD and PHP may also require other libraries, depending on which image
formats you want to work with.
PHP INTERVIEW QUESTIONS WITH ANSWER
33. How we get current second time using date() ?
<? Php
$second=date(“s”);
?>
PHP INTERVIEW QUESTIONS WITH ANSWER
34. What are the formatting and printing strings
available in PHP ?
printf() -Displays a formatted string
sprintf() -Saves a formatted string in a variable
fprintf() -Prints a formatted string to a file
number_format() -Formats numbers as strings
PHP INTERVIEW QUESTIONS WITH ANSWER
35. How can we find the number of rows in a result set
using PHP ?
$result = mysql_query($sql, $db_link);
$num_rows = mysql_num_rows($result);
echo "$num_rows rows found";
PHP INTERVIEW QUESTIONS WITH ANSWER
SUBSCRIBE for more
Youtube: Zooming | https://github.com/Soba-Arjun/GK
a
a
a
a

More Related Content

What's hot

What's hot (15)

Python Session - 2
Python Session - 2Python Session - 2
Python Session - 2
 
Reversing Google Protobuf protocol
Reversing Google Protobuf protocolReversing Google Protobuf protocol
Reversing Google Protobuf protocol
 
Unicode (UTF-8) with PHP 5.3, MySQL 5.5 and HTML5 Cheat Sheet (2011)
Unicode (UTF-8) with PHP 5.3, MySQL 5.5 and HTML5 Cheat Sheet (2011)Unicode (UTF-8) with PHP 5.3, MySQL 5.5 and HTML5 Cheat Sheet (2011)
Unicode (UTF-8) with PHP 5.3, MySQL 5.5 and HTML5 Cheat Sheet (2011)
 
PHP Reviewer
PHP ReviewerPHP Reviewer
PHP Reviewer
 
Php and threads ZTS
Php and threads ZTSPhp and threads ZTS
Php and threads ZTS
 
Clean code _v2003
 Clean code _v2003 Clean code _v2003
Clean code _v2003
 
Python Session - 6
Python Session - 6Python Session - 6
Python Session - 6
 
PHPDoc
PHPDocPHPDoc
PHPDoc
 
Python Session - 3
Python Session - 3Python Session - 3
Python Session - 3
 
The state of DI in PHP - phpbnl12
The state of DI in PHP - phpbnl12The state of DI in PHP - phpbnl12
The state of DI in PHP - phpbnl12
 
The Rust Borrow Checker
The Rust Borrow CheckerThe Rust Borrow Checker
The Rust Borrow Checker
 
Your Own Metric System
Your Own Metric SystemYour Own Metric System
Your Own Metric System
 
Creating a Java EE 7 Websocket Chat Application
Creating a Java EE 7 Websocket Chat ApplicationCreating a Java EE 7 Websocket Chat Application
Creating a Java EE 7 Websocket Chat Application
 
Deep C
Deep CDeep C
Deep C
 
Php1
Php1Php1
Php1
 

Similar to Php interview questions with answer

100 PHP question and answer
100 PHP  question and answer100 PHP  question and answer
100 PHP question and answerSandip Murari
 
Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01
Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01
Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01Tekblink Jeeten
 
Php Interview Questions
Php Interview QuestionsPhp Interview Questions
Php Interview QuestionsUmeshSingh159
 
PHP Interview Questions-ppt
PHP Interview Questions-pptPHP Interview Questions-ppt
PHP Interview Questions-pptMayank Kumar
 
Top 100 PHP Interview Questions and Answers
Top 100 PHP Interview Questions and AnswersTop 100 PHP Interview Questions and Answers
Top 100 PHP Interview Questions and AnswersVineet Kumar Saini
 
Fnt Software Solutions Pvt Ltd Placement Papers - PHP Technology
Fnt Software Solutions Pvt Ltd Placement Papers - PHP TechnologyFnt Software Solutions Pvt Ltd Placement Papers - PHP Technology
Fnt Software Solutions Pvt Ltd Placement Papers - PHP Technologyfntsofttech
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questionssekar c
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questionssubash01
 
PHP Interview Questions for Freshers 2018
PHP Interview Questions for Freshers 2018PHP Interview Questions for Freshers 2018
PHP Interview Questions for Freshers 2018AshokKumar3319
 
Php interview-questions and answers
Php interview-questions and answersPhp interview-questions and answers
Php interview-questions and answerssheibansari
 
Top 100 PHP Questions and Answers
Top 100 PHP Questions and AnswersTop 100 PHP Questions and Answers
Top 100 PHP Questions and Answersiimjobs and hirist
 
Starting with PHP and Web devepolment
Starting with PHP and Web devepolmentStarting with PHP and Web devepolment
Starting with PHP and Web devepolmentRajib Ahmed
 
PHP Unit-1 Introduction to PHP
PHP Unit-1 Introduction to PHPPHP Unit-1 Introduction to PHP
PHP Unit-1 Introduction to PHPLariya Minhaz
 
GTU MCA PHP Interview Questions And Answers for freshers
GTU MCA PHP  Interview Questions And Answers for freshersGTU MCA PHP  Interview Questions And Answers for freshers
GTU MCA PHP Interview Questions And Answers for freshersTOPS Technologies
 

Similar to Php interview questions with answer (20)

php questions
php questions php questions
php questions
 
100 PHP question and answer
100 PHP  question and answer100 PHP  question and answer
100 PHP question and answer
 
Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01
Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01
Top 100-php-interview-questions-and-answers-are-below-120816023558-phpapp01
 
Oss questions
Oss questionsOss questions
Oss questions
 
Php Interview Questions
Php Interview QuestionsPhp Interview Questions
Php Interview Questions
 
PHP Interview Questions-ppt
PHP Interview Questions-pptPHP Interview Questions-ppt
PHP Interview Questions-ppt
 
Top 100 PHP Interview Questions and Answers
Top 100 PHP Interview Questions and AnswersTop 100 PHP Interview Questions and Answers
Top 100 PHP Interview Questions and Answers
 
Fnt Software Solutions Pvt Ltd Placement Papers - PHP Technology
Fnt Software Solutions Pvt Ltd Placement Papers - PHP TechnologyFnt Software Solutions Pvt Ltd Placement Papers - PHP Technology
Fnt Software Solutions Pvt Ltd Placement Papers - PHP Technology
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questions
 
Php interview questions
Php interview questionsPhp interview questions
Php interview questions
 
PHP Interview Questions for Freshers 2018
PHP Interview Questions for Freshers 2018PHP Interview Questions for Freshers 2018
PHP Interview Questions for Freshers 2018
 
Php interview-questions and answers
Php interview-questions and answersPhp interview-questions and answers
Php interview-questions and answers
 
Top 100 PHP Questions and Answers
Top 100 PHP Questions and AnswersTop 100 PHP Questions and Answers
Top 100 PHP Questions and Answers
 
web design and development.docx
web design and development.docxweb design and development.docx
web design and development.docx
 
Sa
SaSa
Sa
 
Php
PhpPhp
Php
 
Starting with PHP and Web devepolment
Starting with PHP and Web devepolmentStarting with PHP and Web devepolment
Starting with PHP and Web devepolment
 
PHP Unit-1 Introduction to PHP
PHP Unit-1 Introduction to PHPPHP Unit-1 Introduction to PHP
PHP Unit-1 Introduction to PHP
 
Doc
DocDoc
Doc
 
GTU MCA PHP Interview Questions And Answers for freshers
GTU MCA PHP  Interview Questions And Answers for freshersGTU MCA PHP  Interview Questions And Answers for freshers
GTU MCA PHP Interview Questions And Answers for freshers
 

More from Soba Arjun

Java interview questions
Java interview questionsJava interview questions
Java interview questionsSoba Arjun
 
Java modifiers
Java modifiersJava modifiers
Java modifiersSoba Arjun
 
Java variable types
Java variable typesJava variable types
Java variable typesSoba Arjun
 
Java basic datatypes
Java basic datatypesJava basic datatypes
Java basic datatypesSoba Arjun
 
Dbms interview questions
Dbms interview questionsDbms interview questions
Dbms interview questionsSoba Arjun
 
C interview questions
C interview questionsC interview questions
C interview questionsSoba Arjun
 
Technical interview questions
Technical interview questionsTechnical interview questions
Technical interview questionsSoba Arjun
 
Computer Memory Types - Primary Memory - Secondary Memory
Computer Memory Types - Primary Memory - Secondary MemoryComputer Memory Types - Primary Memory - Secondary Memory
Computer Memory Types - Primary Memory - Secondary MemorySoba Arjun
 
Birds sanctuaries
Birds sanctuariesBirds sanctuaries
Birds sanctuariesSoba Arjun
 
Important operating systems
Important operating systemsImportant operating systems
Important operating systemsSoba Arjun
 
Important branches of science
Important branches of scienceImportant branches of science
Important branches of scienceSoba Arjun
 
Important file extensions
Important file extensionsImportant file extensions
Important file extensionsSoba Arjun
 
Java Abstraction
Java AbstractionJava Abstraction
Java AbstractionSoba Arjun
 
Java Polymorphism
Java PolymorphismJava Polymorphism
Java PolymorphismSoba Arjun
 
Java Overriding
Java OverridingJava Overriding
Java OverridingSoba Arjun
 
Java Inner Classes
Java Inner ClassesJava Inner Classes
Java Inner ClassesSoba Arjun
 
java Exception
java Exceptionjava Exception
java ExceptionSoba Arjun
 
java Inheritance
java Inheritancejava Inheritance
java InheritanceSoba Arjun
 
Major tribes of india
Major tribes of indiaMajor tribes of india
Major tribes of indiaSoba Arjun
 

More from Soba Arjun (20)

Java interview questions
Java interview questionsJava interview questions
Java interview questions
 
Java modifiers
Java modifiersJava modifiers
Java modifiers
 
Java variable types
Java variable typesJava variable types
Java variable types
 
Java basic datatypes
Java basic datatypesJava basic datatypes
Java basic datatypes
 
Dbms interview questions
Dbms interview questionsDbms interview questions
Dbms interview questions
 
C interview questions
C interview questionsC interview questions
C interview questions
 
Technical interview questions
Technical interview questionsTechnical interview questions
Technical interview questions
 
Computer Memory Types - Primary Memory - Secondary Memory
Computer Memory Types - Primary Memory - Secondary MemoryComputer Memory Types - Primary Memory - Secondary Memory
Computer Memory Types - Primary Memory - Secondary Memory
 
Birds sanctuaries
Birds sanctuariesBirds sanctuaries
Birds sanctuaries
 
Important operating systems
Important operating systemsImportant operating systems
Important operating systems
 
Important branches of science
Important branches of scienceImportant branches of science
Important branches of science
 
Important file extensions
Important file extensionsImportant file extensions
Important file extensions
 
Java Abstraction
Java AbstractionJava Abstraction
Java Abstraction
 
Java Polymorphism
Java PolymorphismJava Polymorphism
Java Polymorphism
 
Java Overriding
Java OverridingJava Overriding
Java Overriding
 
Java Inner Classes
Java Inner ClassesJava Inner Classes
Java Inner Classes
 
java Exception
java Exceptionjava Exception
java Exception
 
Java Methods
Java MethodsJava Methods
Java Methods
 
java Inheritance
java Inheritancejava Inheritance
java Inheritance
 
Major tribes of india
Major tribes of indiaMajor tribes of india
Major tribes of india
 

Recently uploaded

ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptxSherlyMaeNeri
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomnelietumpap1
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 

Recently uploaded (20)

ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Judging the Relevance and worth of ideas part 2.pptx
Judging the Relevance  and worth of ideas part 2.pptxJudging the Relevance  and worth of ideas part 2.pptx
Judging the Relevance and worth of ideas part 2.pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
ENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choomENGLISH6-Q4-W3.pptxqurter our high choom
ENGLISH6-Q4-W3.pptxqurter our high choom
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 

Php interview questions with answer

  • 2. 1. Who is the father of PHP ? Rasmus Lerdorf PHP INTERVIEW QUESTIONS WITH ANSWER
  • 3. 2. What is the different between $name and $$name? $name is variable where as $$name is a reference variable. Like, $name=sonia $$name=singh So, $sonia=singh PHP INTERVIEW QUESTIONS WITH ANSWER
  • 4. 3. What are the method available in form submitting? GET and POST PHP INTERVIEW QUESTIONS WITH ANSWER
  • 5. 4. How we can get browser properties using PHP ? <?php echo $SERVER[‘HTTP_USER_AGENT’].”nn”; $browser=get_browser(null,true); print_r($browser); ?> PHP INTERVIEW QUESTIONS WITH ANSWER
  • 6. 5. What is a Session?  A session is a logical object created by PHP engine to allow you to preserve data across subsequent HTTP requests.  Session are commonly used to store data temporary and also it allow to multiple pages for the same visitor.  Once browser will close, the session will be closed. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 7. 6. How we can register variables into the Session? <?php session_register($ur_session_var); ?> PHP INTERVIEW QUESTIONS WITH ANSWER
  • 8. 7. What are the ways are there to pass the variables through the navigation between pages? Register the variable into the session Pass the variable as a cookie Pass the variable as a part of the URL PHP INTERVIEW QUESTIONS WITH ANSWER
  • 9. 8. How to find the total number of elements of array? sizeof($arr_var); count($arr_var); PHP INTERVIEW QUESTIONS WITH ANSWER
  • 10. 9. How we can create database using PHP ? mysql_create_db(); PHP INTERVIEW QUESTIONS WITH ANSWER
  • 11. 10. What is the functionality of function strstr and stristr ?  strstr() returns part of a given string from the occurrence of a given substring to the end of the string.  For example: strstr(“user@gmail”,”@”) will return “@gmail”.  stristr() is indential to strstr() except that it is case sensitive. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 12. 11. What are encryption function in PHP ? CRYPT() , MD5() PHP INTERVIEW QUESTIONS WITH ANSWER
  • 13. 12. How to store uploaded file to the final location? move_uploaded_file(string filename, string distination) PHP INTERVIEW QUESTIONS WITH ANSWER
  • 14. 13. Explain mysql_error() The mysql_error() will tell us what was the wrong with our querry, similar to the message we would receive at the MYSQL console. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 15. 14. What is Constructor and Destructor ? Constructor: PHP allows us to declare constructor method for a classes. Classes which have a constructor method call this method on each newly-created object. So it is suitable for any initialization that the object may need before it is used. Destructor: PHP 5 introduced a destructor concept similar to that other object oriented languages such as C++. When the object is explicitly destroyed or in any order in shutdown sequence. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 16. 15. Explain the visibility of the property or method ?  The visibility of a property or method must be defined by prefixing the declaration with the keywords public, protected or private.  Class members declared public can be accessed everywhere.  Members declared protected can be accessed only within the class itself and by inherited and parent classes.  Members declared as private may only be accessed by the class that defines the member. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 17. 16. What are the different between GET & POST method? 1. GET Method have some limit like only 2Kb data able to send for request But in POST method unlimited data can we send. 2. When we use GET method requested data show in URL but Not in POST method so POST method is good for send sensitive request. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 18. 17. What are the different between require and include? Both include and require used to include a file but when included file not found Include send Warning where as Require send Fatal Error. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 19. 18. What is the use of header()in PHP ?  The header() function sends a raw HTTP header to a client.  We can use herder() function for redirection of pages.  It is important to notice that header() must be called before any actual output is seen. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 20. 19. List out the predefined classes in PHP. Directory stdClass __PHP_Incomplete_Class exception php_user_filter PHP INTERVIEW QUESTIONS WITH ANSWER
  • 21. 20. What type of inheritance supported by PHP ? In PHP an extended class is always dependent on a single base class, that is, multiple inheritance is not supported. Classes are extended using the keyword 'extends'. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 22. 21. How encrypt the username and password ? You can encrypt a password with the following Mysql>SET PASSWORD=PASSWORD("Password"); We can encode data using base64_encode($string) and can decode using base64_decode($string); PHP INTERVIEW QUESTIONS WITH ANSWER
  • 23. 22. What is the different between explode and split ? Split function splits string into array by regular expression. Explode splits a string into array by string. For Example: explode(" and", "India and Pakistan and Srilanka"); split(" :", "India : Pakistan : Srilanka"); Both of these functions will return an array that contains India, Pakistan, and Srilanka PHP INTERVIEW QUESTIONS WITH ANSWER
  • 24. 23. How do you define a constant ? Constants in PHP are defined using define() directive, like define("MYCONSTANT", 100); PHP INTERVIEW QUESTIONS WITH ANSWER
  • 25. 24. how do you pass variable by value in PHP ? Just like in C++, put ampersand in front of variable. $a = &$b; PHP INTERVIEW QUESTIONS WITH ANSWER
  • 26. 25. What does a special set of tags <?= and ?> do in PHP? The output is displayed directly to the browser. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 27. 26. How do you call a constructor for a parent class ? parent::constructor($value) PHP INTERVIEW QUESTIONS WITH ANSWER
  • 28. 27. What is a special meaning of __sleep and __wakeup ? __sleep returns the array of all the variables than need to be saved, while __wakeup retrieves them. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 29. 28. What is the different between PHP & JavaScript ?  JavaScript is a client side scripting language, so javascript can make popups and other things happens on someone’s PC.  While PHP is server side scripting language so it does every stuff with the server. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 30. 29. What is the different between unlike() and unset() ? unlink() deletes the given file from the file system. unset() makes a variable undefined. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 31. 30. How many ways can we get the value of current session id ? session_id() returns the session id for the current session. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 32. 31. What are the default session time and path ? default session time in PHP is 1440 seconds or 24 minutes Default session save path id temporary folder /tmp PHP INTERVIEW QUESTIONS WITH ANSWER
  • 33. 32. For image work, which library ? • we will need to compile PHP with the GD library of image functions for this to work. • GD and PHP may also require other libraries, depending on which image formats you want to work with. PHP INTERVIEW QUESTIONS WITH ANSWER
  • 34. 33. How we get current second time using date() ? <? Php $second=date(“s”); ?> PHP INTERVIEW QUESTIONS WITH ANSWER
  • 35. 34. What are the formatting and printing strings available in PHP ? printf() -Displays a formatted string sprintf() -Saves a formatted string in a variable fprintf() -Prints a formatted string to a file number_format() -Formats numbers as strings PHP INTERVIEW QUESTIONS WITH ANSWER
  • 36. 35. How can we find the number of rows in a result set using PHP ? $result = mysql_query($sql, $db_link); $num_rows = mysql_num_rows($result); echo "$num_rows rows found"; PHP INTERVIEW QUESTIONS WITH ANSWER
  • 38. Youtube: Zooming | https://github.com/Soba-Arjun/GK
  • 39. a
  • 40. a a a