Php Cheatsheet -by- CodeWithHarry
Php Cheatsheet -by- CodeWithHarry
Php Cheatsheet
Basics
Hello World
echo function is used to display or print output
Comments
Commets are used to make the code more understandable for programmer, they are not executed by
compiler or interpreter.
One Liner
This is a singleline comment
Multiline
This is a multiline comment
/* Code With
Harry */
Vardump
This function dumps information about one or more variables.
Variables
Variables are "containers" for storing information.
Defining Variables
https://www.codewithharry.com/blogpost/php-cheatsheet 1/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<?php
$Title = "PHP Cheat Sheet By CodeWithHarry";
?>
Datatypes
Datatype is a type of data
String
A string is a sequence of characters, like "Hello world!".
<?php
$x = "Harry";
echo $x;
?>
Integer
An integer is a number without any decimal part.
<?php
$x = 1234;
var_dump($x);
?>
Float
A float is a number with a decimal point or a number in exponential form.
<?php
$x = 1.2345;
var_dump($x);
?>
Array
An array stores multiple values in one single variable
<?php
$names = array("Harry","Rohan","Shubham");
var_dump($names);
?>
Class
A class is a template for objects
https://www.codewithharry.com/blogpost/php-cheatsheet 2/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<?php
class Harry{
// code goes here...
}
?>
Object
An object is an instance of the class.
<?php
class Bike {
public $color;
public $model;
public function __construct($color, $model) {
$this->color = $color;
$this->model = $model;
}
public function message() {
return "My bike is a " . $this->color . " " . $this->model . "!";
}
}
Escape Characters
Escape sequences are used for escaping a character during string parsing. It is also used for giving special
meaning to represent line breaks, tabs, alerts and more.
Line feed
It adds a newline
\n
Carriage return
It inserts a carriage return in the text at this point.
\r
Horizontal tab
It gives a horizontal tab space
https://www.codewithharry.com/blogpost/php-cheatsheet 3/22
28/08/2021 Php Cheatsheet - CodeWithHarry
\t
Vertical tab
It gives a vertical tab space
\v
Escape
It is used for escape characters
\e
Form feed
It is commonly used as page separators but now is also used as section separators.
\f
Backslash
It adds a backslash
\\
Dollar sign
Print the next character as a dollar, not as part of a variable
\$
Single quote
Print the next character as a single quote, not a string closer
\'
Double quote
Print the next character as a double quote, not a string closer
\"
Operators
https://www.codewithharry.com/blogpost/php-cheatsheet 4/22
28/08/2021 Php Cheatsheet - CodeWithHarry
Operators are symbols that tell the compiler or interpreter to perform specific mathematical or logical
manipulations. These are of several types.
Arithmetic Operators
Addition
Sum of $x and $y
$x + $y
Subtraction
Difference of $x and $y
$x - $y
Multiplication
Product of $x and $y
$x * $y
Division
Quotient of $x and $y
$x / $y
Modulus
The remainder of $x divided by $y
$x % $y
Exponentiation
Result of raising $x to the $y'th power
$x ** $y
https://www.codewithharry.com/blogpost/php-cheatsheet 5/22
28/08/2021 Php Cheatsheet - CodeWithHarry
The PHP assignment operators are used with numeric values to write a value to a variable.
x=y
The left operand gets set to the value of the expression on the right
x = y
x += y
Addition
x = x + y
x -= y
Subtraction
x = x - y
x *= y
Multiplication
x = x * y
x /= y
Division
x = x / y
x %= y
Modulus
x = x % y
$x == $y
Identical
https://www.codewithharry.com/blogpost/php-cheatsheet 6/22
28/08/2021 Php Cheatsheet - CodeWithHarry
Returns true if $x is equal to $y, and they are of the same type
$x === $y
Not equal
Returns true if $x is not equal to $y
$x != $y
Not equal
Returns true if $x is not equal to $y
$x <> $y
Not identical
Returns true if $x is not equal to $y, or they are not of the same type
$x !== $y
Greater than
Returns true if $x is greater than $y
$x > $y
Less than
Returns true if $x is less than $y
$x < $y
$x >= $y
$x <= $y
https://www.codewithharry.com/blogpost/php-cheatsheet 7/22
28/08/2021 Php Cheatsheet - CodeWithHarry
=++$x
Post-increment
Returns $x, then increments $x by one
$x++
Pre-decrement
Decrements $x by one, then returns $x
--$x
Post-decrement
Returns $x, then decrements $x by one
$x--
$x and $y
Or
True if either $x or $y is true
$x or $y
Xor
True if either $x or $y is true, but not both
$x xor $y
https://www.codewithharry.com/blogpost/php-cheatsheet 8/22
28/08/2021 Php Cheatsheet - CodeWithHarry
And
True if both $x and $y are true
$x && $y
Or
True if either $x or $y is true
$x || $y
Not
True if $x is not true
!$x
$txt1 . $txt2
Concatenation assignment
Appends $txt2 to $txt1
$txt1 .= $txt2
$x + $y
Equality
Returns true if $x and $y have the same key/value pairs
$x == $y
https://www.codewithharry.com/blogpost/php-cheatsheet 9/22
28/08/2021 Php Cheatsheet - CodeWithHarry
Identity
Returns true if $x and $y have the same key/value pairs in the same order and of the same types
$x === $y
Inequality
Returns true if $x is not equal to $y
$x != $y
Inequality
Returns true if $x is not equal to $y
$x <> $y
Non-identity
Returns true if $x is not identical to $y
$x !== $y
Conditional Statements
Conditional statements are used to perform operations based on some condition.
If Statement
if statement checks the condition and if it is True, then the block of if statement executes; otherwise, control
skips that block of code.
if (condition) {
// code to execute if condition is met
}
If..Else
if the condition of if block evaluates to True, then if block executes otherwise else block executes
https://www.codewithharry.com/blogpost/php-cheatsheet 10/22
28/08/2021 Php Cheatsheet - CodeWithHarry
if (condition) {
// code to execute if condition is met
} else {
// code to execute if condition is not met
}
If..Elseif..Else
It executes different codes for more than two conditions
if (condition) {
// code to execute if condition is met
} elseif (condition) {
// code to execute if this condition is met
} else {
// code to execute if none of the conditions are met
}
Switch Statement
It allows a variable to be tested for equality against a list of values (cases).
switch (n) {
case x:
code to execute if n=x;
break;
case y:
code to execute if n=y;
break;
case z:
code to execute if n=z;
break;
// add more cases as needed
default:
code to execute if n is neither of the above;
}
Loops
Iterative statements or Loops facilitate programmers to execute any block of code lines repeatedly.
For Loop
It is used to iterate the statements several times. It is frequently used to traverse the data structures like the
array and linked list.
https://www.codewithharry.com/blogpost/php-cheatsheet 11/22
28/08/2021 Php Cheatsheet - CodeWithHarry
Foreach Loop
The foreach loop loops through a block of code for each element in an array.
While Loop
It iterate the block of code as long as a specified condition is True or vice versa
Do-While Loop
This loop is very similar to the while loop with one difference, i.e., the body of the do-while loop is executed
at least once even if the condition is False. It is an exit-controlled loop.
do {
// code to execute goes here;
} while (condition that must apply);
Predefined Variables
PHP provides a large number of predefined variables to all scripts. The variables represent everything from
external variables to built-in environment variables, last error messages etc. All this information is defined in
some predefined variables.
$GLOBALS
$GLOBALS is a PHP super global variable which is used to access global variables from anywhere in the
PHP script.
https://www.codewithharry.com/blogpost/php-cheatsheet 12/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<?php
$a = 10;
$b = 15;
function addition() {
$GLOBALS['c'] = $GLOBALS['a'] + $GLOBALS['b'];
}
addition();
echo $c;
?>
$_SERVER
Returns the filename of the currently executing script. $_SERVER is a PHP super global variable which
holds information about headers, paths, and script locations.
$_SERVER['PHP_SELF']
Returns the version of the Common Gateway Interface (CGI) the server is using
$_SERVER['GATEWAY_INTERFACE']
$_SERVER['SERVER_ADDR']
$_SERVER['SERVER_NAME']
$_SERVER['SERVER_SOFTWARE']
Returns the name and revision of the information protocol (such as HTTP/1.1)
$_SERVER['SERVER_PROTOCOL']
Returns the request method used to access the page (such as POST)
$_SERVER['REQUEST_METHOD']
https://www.codewithharry.com/blogpost/php-cheatsheet 13/22
28/08/2021 Php Cheatsheet - CodeWithHarry
$_SERVER['REQUEST_TIME']
Returns the query string if the page is accessed via a query string
$_SERVER['QUERY_STRING']
$_SERVER['HTTP_ACCEPT']
Returns the Accept_Charset header from the current request (such as utf-8,ISO-8859-1)
$_SERVER['HTTP_ACCEPT_CHARSET']
$_SERVER['HTTP_HOST']
Returns the complete URL of the current page (not reliable because not all user-agents support it)
$_SERVER['HTTP_REFERER']
$_SERVER['HTTPS']
Returns the IP address from where the user is viewing the current page
$_SERVER['REMOTE_ADDR']
Returns the Hostname from where the user is viewing the current page
$_SERVER['REMOTE_HOST']
Returns the port being used on the user's machine to communicate with the web server
$_SERVER['REMOTE_PORT']
$_SERVER['SCRIPT_FILENAME']
https://www.codewithharry.com/blogpost/php-cheatsheet 14/22
28/08/2021 Php Cheatsheet - CodeWithHarry
Returns the value given to the SERVER_ADMIN directive in the web server configuration file (if your script
runs on a virtual host, it will be the value defined for that virtual host) (such as
[email protected])
$_SERVER['SERVER_ADMIN']
Returns the port on the server machine being used by the webserver for communication (such as 80)
$_SERVER['SERVER_PORT']
Returns the server version and virtual hostname which are added to server-generated pages
$_SERVER['SERVER_SIGNATURE']
$_SERVER['PATH_TRANSLATED']
$_SERVER['SCRIPT_NAME']
$_SERVER['SCRIPT_URI']
$_GET
PHP $_GET is a PHP super global variable which is used to collect form data after submitting an HTML form
with method="get".
<?php
echo "Hello" . $_GET['Example'] . " at " . $_GET['web'];
?>
$_POST
PHP $_POST is a PHP super global variable which is used to collect form data after submitting an HTML
form with method="post". $_POST is also widely used to pass variables.
https://www.codewithharry.com/blogpost/php-cheatsheet 15/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<html>
<body>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
Name: <input type="text" name="fname">
<input type="submit">
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = $_POST['fname'];
if (empty($name)) {
echo "Please Enter your name";
} else {
echo $name;
}
}
?>
</body>
</html>
$_REQUEST
PHP $_REQUEST is a PHP super global variable which is used to collect data after submitting an HTML
form.
<html>
<body>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
Name: <input type="text" name="fname">
<input type="submit">
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = $_REQUEST['fname'];
if (empty($name)) {
echo "Name is empty";
} else {
echo $name;
}
}
?>
</body>
</html>
Variable-handling Functions
The PHP variable handling functions are part of the PHP core. No installation is required to use these
functions.
boolval
https://www.codewithharry.com/blogpost/php-cheatsheet 16/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<?php
echo '0: '.(boolval(0) ? 'true' : 'false')."\n";
echo '42: '.(boolval(42) ? 'true' : 'false')."\n";
echo '0.0: '.(boolval(0.0) ? 'true' : 'false')."\n";
echo '4.2: '.(boolval(4.2) ? 'true' : 'false')."\n";
echo '"": '.(boolval("") ? 'true' : 'false')."\n";
echo '"string": '.(boolval("string") ? 'true' : 'false')."\n";
echo '"0": '.(boolval("0") ? 'true' : 'false')."\n";
echo '"1": '.(boolval("1") ? 'true' : 'false')."\n";
echo '[1, 2]: '.(boolval([1, 2]) ? 'true' : 'false')."\n";
echo '[]: '.(boolval([]) ? 'true' : 'false')."\n";
echo 'stdClass: '.(boolval(new stdClass) ? 'true' : 'false')."\n";
?>
isset
It is used to check whether a variable is empty. It also checks whether the variable is set/declared:
<?php
$x = 0;
// True because $x is set
if (isset($x)) {
echo "Variable 'x' is set";
}
unset
It unsets variables.
<?php
$a = "Namaste world!";
echo "The value of 'a' before unset: " . $a ;
unset($a);
echo "The value of 'a' after unset: " . $a;
?>
debug_zval_dump
debug_zval_dump is used to dump a string representation of an internal zval structure to output
https://www.codewithharry.com/blogpost/php-cheatsheet 17/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<?php
$var1 = 'Hello';
$var1 .= ' World';
$var2 = $var1;
debug_zval_dump($var1);
?>
empty
Empty is used to check whether a variable is empty or not.
<?php
$var = 0;
floatval
It returns the float value of different variables:
<?php
$var = '122.34343The';
$float_value_of_var = floatval($var);
echo $float_value_of_var; // 122.34343
?>
get_defined_vars
It returns all defined variables, as an array:
https://www.codewithharry.com/blogpost/php-cheatsheet 18/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<?php
$b = array(1, 1, 2, 3, 5, 8);
$arr = get_defined_vars();
// print $b
print_r($arr["b"]);
get_resource_type
It returns the resource type:
<?php
// prints: stream
$fp = fopen("foo", "w");
echo get_resource_type($fp) . "\n";
// prints: curl
$c = curl_init ();
echo get_resource_type($c) . "\n"; // works prior to PHP 8.0.0 as since 8.0 cu
?>
gettype
It returns the type of different variables:
<?php
$a = 3;
echo gettype($a) ;
?>
intval
It returns the integer value of different variables:
https://www.codewithharry.com/blogpost/php-cheatsheet 19/22
28/08/2021 Php Cheatsheet - CodeWithHarry
<?php
echo intval(42); ?>
is_array
To check whether a variable is an array or not:
<?php
$a = "Hello";
echo "a is " . is_array($a) ;?>
Array
An array stores multiple values in one single variable.
Declaring an Array
<?php
$cms = array("Harry", "Lovish", "Rohan");
echo "Who needs chocolate? Is it" . $cms[0] . ", " .
$cms[1] . " or " . $cms[2] . "?";
?>
Functions
A function is a block of statements that can be used repeatedly in a program
Defining Functions
function NameOfTheFunction() {
//place PHP code here
}
MySQLi Functions
These functions allow you to access MySQL database server.
mysqli_connect() Function
It opens a non-persistent MySQL connection
mysqli_connect()
mysqli_affected_rows() Function
It returns the number of affected rows
https://www.codewithharry.com/blogpost/php-cheatsheet 20/22
28/08/2021 Php Cheatsheet - CodeWithHarry
mysqli_affected_rows()
mysqli_connect_error() Function
It shows the Error description for the connection error
mysqli_connect_error()
mysqli_fetch_all() Function
It fetches all result rows as an array
mysqli_fetch_all()
mysqli_fetch_array() Function
It fetches a result row as an associative, a numeric array, or both
mysqli_fetch_array()
mysqli_fetch_assoc() Function
It fetches a result row as an associative array
mysqli_fetch_assoc()
mysqli_fetch_row() Function
It fetches one row from a result set and returns it as an enumerated array
mysqli_fetch_row()
mysqli_kill() Function
It kills a MySQL thread
mysqli_kill()
mysqli_close() Function
It closes a database connection
mysqli_close()
https://www.codewithharry.com/blogpost/php-cheatsheet 21/22
28/08/2021 Php Cheatsheet - CodeWithHarry
Comments
No comments to display. Be the first person to post a comment!
https://www.codewithharry.com/blogpost/php-cheatsheet 22/22