PHP Flashcards
Who is designed by PHP ?
Rasmus Lerdorf
PHP initial release date ?
1995
What does PHP stand for?
Hypertext Preprocessor
PHP files have a default file extension of
.php
What is/are PHP code editors ?
Adobe Dreamweaver
Notepad
Notepad++
Which of the following correct PHP syntax?
<?php…?>
What is WAMP server ?
Windows Apache MySQL PHP
In PHP, instructions are terminated by using what?
;
What is a correct way to add a comment in PHP?
/…/
How do you write “Hello World” in PHP
echo “Hello World”;
What type specifier is invalid in print f() functions ?
% a
PHP Variable start with which symbol?
$
The PHP syntax is most similar to:
Perl and C
What is the correct way to include the file “header.inc” ?
<?php include “header.inc”; ?>
In PHP what is the difference between include() and require() ?
They are different how they handle failure
To process image what library needed in PHP?
GD Library
In PHP, what function is used to insert content of one php file into another php file before server executes ?
include()
What function is used to redirect a page ?
header()
PHP variables are_____ ?
Multitype variables
How can we check the value of a given variable is a number?
is_numeric()
What variable assignment is ‘by value’ assignment in PHP ?
$value1= $value?
How can we check the value of a given variable is alphanumeric?
ctype_alnum()
How do I check if a given variable is empty?
empty()
Identify the variable scope that is not supported by PHP ?
Hidden variables