Books
Learn HTML
Learn CSS
Learn Git
Learn Javascript
Learn PHP
Learn python
Learn Java
Exercises
HTML
JavaScript
Git
CSS
PHP
Courses
Quizzes
Snippets
Tools
General Tools
Password Generator
HTML Editor
HTML Encoder
Base 64
Code Diff
JSON Beautifier
CSS Beautifier
Markdown Convertor
Find the Closest Tailwind CSS Color
Phrase encrypt / decrypt
Browser Feature Detection
Number convertor
CSS Maker
CSS Maker
CSS Maker text shadow
CSS Maker Text Rotation
CSS Maker Out Line
CSS Maker RGB Shadow
CSS Maker Transform
CSS Maker Font Face
Color Tools
Color Picker
Colors CMYK
Colors HWB
Colors HSL
Color Hex
Color mixer
Color Converter
Colors RGB
Color Contrast Analyzer
Color Gradient
String Tools
String Length Calculator
MD5 Hash Generator
Sha256 Hash Generator
String Reverse
URL Encoder
URL Decoder
Base 64 Encoder
Base 64 Decoder
Extra Spaces Remover
String to Lowercase
String to Uppercase
Word Count Calculator
Empty Lines Remover
HTML Tags Remover
Binary to Hex
Hex to Binary
Rot13 Transform on a String
String to Binary
Duplicate Lines Remover
Change theme
Dark
Light
System
Books
Learn HTML
Learn CSS
Learn Git
Learn Javascript
Learn PHP
Learn python
Learn Java
How To
How To NodeJs
How To Linux
How To AngularJs
How To PHP
How To HTML
How To CSS
How To Symfony
How To Git
How To Apache
How To JavaScript
How To Java
How To Vue.js
How To Python
PHP basics
1/25
Which of the following extensions is a correct PHP file extension?
.html
.cpp
.php
.pxp
Next >
2/25
PHP variables need to be declared before adding values to them
True
False
Next >
3/25
What does the 'foreach' loop in PHP do?
It loops through each character of a string
It loops through each key-value pair in an array
It executes a block of code a specific number of times
It iterates through numeric indexed arrays only
Next >
4/25
What does the 'mysqli' extension in PHP stand for?
Multiple SQL Interface
MySQL Improved
MySQL Interface
Manage SQL Integration
Next >
5/25
What is the correct way to end a PHP statement?
.
;
:
End
Next >
6/25
Which global variable in PHP holds information about headers, paths, and script locations?
$_GET
$_POST
$_SERVER
$_ENV
Next >
7/25
Which PHP function is used to redirect the browser to a new page?
header()
redirect()
goto()
forward()
Next >
8/25
In PHP, what does the 'array_pop()' function do?
Removes the last element from an array
Deletes the first element of an array
Pops a new element into the array
Returns the value of the last element
Next >
9/25
How can you declare a static variable in PHP?
static $var;
var static;
$static var;
static_var $var;
Next >
10/25
What is the correct way to add elements to an array in PHP?
$array[] = 'new_element';
array_add($array, 'new_element');
array_push('new_element');
$array->add('new_element');
Next >
11/25
What is the correct way to declare a PHP interface?
interface MyInterface {}
class MyInterface {}
new Interface MyInterface {}
implement MyInterface {}
Next >
12/25
Which PHP superglobal variable is used to access form data sent via POST method?
$_GET
$_POST
$_REQUEST
$_FORM
Next >
13/25
What does the 'continue' statement do in a PHP loop?
Stops the loop
Skips the rest of the current loop iteration
Continues execution without pausing
Exits the loop and continues with the next statement
Next >
14/25
In PHP, which function can you use to convert a string to an integer?
str_to_int()
int()
intval()
to_integer()
Next >
15/25
What is the default session timeout in PHP?
30 minutes
24 minutes
15 minutes
60 minutes
Next >
16/25
How can you create a multiline comment in PHP?
// comment
# comment
/* comment */
<!-- comment -->
Next >
17/25
What does the 'final' keyword do when applied to a class method in PHP?
Makes the method static
Prevents the method from being overridden in child classes
Makes the method abstract
Indicates the method is the last in the class
Next >
18/25
How do you access a PHP superglobal variable inside a function?
By declaring it as global inside the function
By passing it as an argument to the function
By using the 'this' keyword
Superglobals are always accessible, no need for special syntax
Next >
19/25
In PHP, what is the purpose of the 'isset()' function?
Checks if a variable has been set and is not NULL
Determines if a variable is an integer
Checks if a function exists
Sets a variable with a specified value
Next >
20/25
Which PHP function is used to remove white spaces or other predefined characters from the right end of a string?
trim()
ltrim()
strip()
rtrim()
Next >
21/25
Which PHP function is used to convert all applicable characters to HTML entities?
htmlentities()
htmlspecialchars()
convert_to_html()
encode_html()
Next >
22/25
Which function in PHP can be used to create a new directory?
mkdir()
create_dir()
new_directory()
dir_create()
Next >
23/25
Which PHP function is used to check if a string contains a specific word or phrase?
strpos()
str_contains()
contains()
find_string()
Next >
24/25
Which of the following is a valid way to start a session in PHP?
session_begin();
session_start();
start_session();
session_init();
Next >
25/25
How can you append an element to an existing array in PHP?
$array[] = 'new_element';
array_append($array, 'new_element');
$array.add('new_element');
append($array, 'new_element');
Next >
To get the result of the quiz, please provide your email address (optional)..
Get Certificate
It seems you haven't answered any questions yet. Please provide your answers to proceed.