M4 Flashcards
used to declare constants
define()
can only be assigned a scalar value, like a string or a number
constant
T/F A constant’s value can still be changed.
False
You can separate your PHP file and embed it to your html by using PHP __________ functions
include
Includes and evaluates the specified file.
Generate a warning on failure message if file not found.
include
Performs the same way as the include function.
Generate a fatal error message if file not found stopping the script at that point.
require
Same as include function except it includes the file only once.
include_once
Same as require function except it includes the file only once.
require_once
Most of the developers used include functions for their ________ and _________
header, footer
You may write the file with an extension name of ________ rather than .php to serve as a fragment of your program code.
.inc
T/F In some scripts, a file might be included more than once, causing function redefinitions, variable reassignments, and
other possible problems.
True
function used to generate random integers
rand()
function that returns the next highest integer by rounding the value upwards
ceil()
function that returns the next lowest integer by rounding the value downwards
floor()
function that returns the smallest value
min()
function that returns the highest value
max()
function that formats a number (with grouped thousand)
number_format()
function that destroys the specified variable
unset
function that splits a string by string
explode
function that joins array elements to form a string
implode
function that returns the value length of a string
strlen
function that finds the position of the first occurrence of a substring in a given string
strpos
function that reverses a given string
strrev
function that converts string to lowercase
strtolower
function that converts string to uppercase
strtoupper
function that returns part of a given string
substr
function that makes a string’s first character uppercase
ucfirst()
converts string to uppercase*
ucwords()
stripped white spaces or other characters from the beginning and end of a string.
trim()
strip white spaces or other characters from the beginning of a string
ltrim()
strip white spaces or other characters from the end of a string
rtrim()
strip HTML and PHP tags from a string
strip_tags()
used to format a local time or date
returns a string formatted according to the given format string
date()
Day of the month, 2 digits with leading zeros (01 - 31)
d
A textual representation of a day, three letters (Mon - Sun)
D
Day of the month without leading zeros (1 - 31)
j
A full textual representation of the day of the week (Sunday - Saturday)
l
ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0) (1 - 7)
N
English ordinal suffix for the day of the month, 2 characters (st, nd, rd or th. Works
well with j)
S
Numeric representation of the day of the week (0 - 6)
w
The day of the year (starting from 0) (0 - 365)
z
ISO-8601 week number of year, weeks starting on Monday (1 - 52)
W
A full textual representation of a month (January - December)
F
Numeric representation of a month, with
leading zeros (01 - 12)
m
A short textual representation of a month, three letters (Jan - Dec)
M
Numeric representation of a month, without leading zeros (1 - 12)
n
Number of days in the given month (28 - 31)
t
Whether it’s a leap year (0 / 1)
L
ISO-8601 year number. This has the same value as Y, except that if the ISO week number (W) belongs to the previous or next year, that year is used instead. (e.g. 1999, 2003)
o
A full numeric representation of a year, 4 digits (e.g. 1999, 2003)
Y
A two digit representation of a year (e.g. 99, 03)
y
Lowercase Ante meridiem and Post meridiem (am / pm)
a
Uppercase Ante meridiem and Post meridiem (AM / PM)
A
Swatch Internet time (000 - 999)
B
12-hour format of an hour without leading zeros (1 - 12)
g
24-hour format of an hour without leading zeros (0 - 23)
G
12-hour format of an hour with leading zeros (01 - 12)
h
24-hour format of an hour with leading zeros (00 - 23)
H
Minutes with leading zeros (00 - 59)
i
Seconds, with leading zeros (0 - 59)
s
Microseconds (e.g. 654321)
u
Timezone identifier (e.g. UTC, GMT, Atlantic/Azores)
e
Whether or not the date is in daylight saving time (0 /1)
I
Difference to Greenwich time (GMT) in hours (e.g. +0200)
O
Difference to Greenwich time (GMT) with colon between hours and minutes (e.g. +02:00)
P
Timezone abbreviation (e.g. EST, MDT)
T
Timezone offset in seconds. The offset for
timezones west of UTC is always negative, and for those east of UTC is always positive. (-43200 - 50400)
Z
ISO 8601 date (e.g. 2004-02-12T15:19:21+00:00)
o
RFC 2822 formatted date (e.g. hu, 21 Dec
2000 16:01:07 +0200)
r
Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT)
U
get the unix timestamp for a given date. (with strict notice)
mktime()
parse any English textual datetime description into a Unix timestamp
strtotime()