PHP Flashcards
PHP can be run without a server.
False.
Who originally authored PHP, and when?
Rasmus Lerdorf, in 1994.
PHP is an open source product.
True.
PHP is a client-side scripting language whose scripts are embedded in HTML documents.
False, PHP is a server-side scripting language.
Is PHP statically or dynamically typed?
Dynamic.
PHP is purely interpreted, meaning what?
PHP is executed directly by the interpreter without being compiled into machine code first.
In what version of PHP was OOP functionality first added?
PHP 3.
In what version of PHP was object handling completely rewritten?
PHP 5.
How is internal PHP code embedded in HTML documents?
By inserting the code between the “<?php” and “?>” tags.
How is external PHP code embedded in HTML documents?
<?php include(“script.php”); ?>
What are the three ways of writing comments in PHP?
…
//…, #…, or /* … */
PHP variable names must always be preceded by a ‘$’.
True.
The following unassigned (unbound) variable has what value?
$x;
Null.
The following are both valid print methods:
print “Hello World! < br >”;
echo “Hello World! < br >”;
True.
The following are both valid print methods:
print (“Hello World! < br >”);
echo (“Hello World! < br >”);
True.
The following will print the value stored in $x:
echo “The value is: $x”;
True.
The following will print the value stored in $x:
echo “The value is: “ + $x;
False - this will print ‘0’, as the compiler attempts a numerical addition.
The following will print the value stored in $x:
echo “The value is: “.$x;
True.
The following will print the value stored in $x:
echo “The value is: “, $x;
True.
How many primitive types are there in PHP?
8.
What are the 3 categories of primitive types in PHP?
Scalar types, compound types, and special types.
What are the 4 (primitive) scalar types in PHP?
Boolean, Integer, Double, String.
What are the 2 (primitive) compound types in PHP?
Array and Object.
What are the 2 (primitive) special types in PHP?
Resource and NULL.
7E2 and 7e2 are both valid numeric literals in PHP.
True.
7,000 and 7,000,000 are both valid numeric literals in PHP.
False, neither are.
7.2E-2 is a valid numeric literal in PHP.
True.
0x0A and 0X0A are both valid numeric literals in PHP.
True.
By default, how many bytes per character in PHP?
1
The native PHP string is “Unicoded” (outputted as a Unicode string).
False.
You cannot output a Unicode string in PHP.
False - you can.
What character is used to delimit String literals in PHP?
Either single or double quotes.
What is the difference between single and double quote delimiters for string literals in PHP?
They do not allow the same substitutions.
What will be printed to the html document?
echo ‘he\’s cool \n’;
he’s cool \n
What will be printed to the html document?
$x = ‘me’;
echo ‘he\’s “cool\” like $x’;
he’s “cool\” like $x
What will be printed to the html document?
echo “he\’s cool \n”;
he\’s cool
What will be printed to the html document?
$x = ‘me’;
echo “he\’s \“cool\” like $x”;
he\’s “cool” like me
What will be displayed on the browser?
$sum = 100;
print(‘The sum is $sum <br> Is that ok?’);
The sum is $sum
Is that ok?
The following will result in how many empty lines between characters ‘a’ and ‘b’?
print(“a\n”);
print(“<br>”);
print(“b\n”);
0
What is the output of the following code on the browser?
$a = “Guns N\’ Roses”;
print(“\$a”);
$a
Boolean values in PHP are case senstive.
False.
In PHP, 0 and 0.0 evaluate to Boolean false.
True.
In PHP, both “” and NULL evaluate to Boolean false.
True.
In PHP, “0” evaluates to Boolean false.
True.
In PHP, ‘0’ evaluates to Boolean false.
True.
The following code sets $x’s value to what?
unset($x);
NULL.
When does the following expression return true?
isset($x);
When $x’s value isn’t NULL.
NULL is coerced to 0 if the context specifies a number.
True.
NULL is coerced to “null” if the context specifies a string.
False - it is coerced to an empty string.
What is phpinfo()?
phpinfo() is a predefined function that outputs information about the PHP configuration and environment.
What does round(5.5) return?
6
What does PHP’s built in srand() function do?
srand() seeds a random number generator. There is no reason to do this past PHP 4.2.0.
What does rand() return if we don’t pass any arguments?
Nothing, rand() requires 2 arguments.
Which PHP function rounds doubles up, and which rounds down?
ceil() and floor().
Which php function returns the absolute value of a number?
abs()
Which PHP functions return the smallest/greatest values out of a list of values?
min() and max()
What operator is used in PHP for string concatenation?
.
Can commas be used for string concatenation?
No, but echo can take multiple arguments separated by commas.
The second line exhibits a valid method of concatenation.
$a = “Hello “;
$a .= “World!”
True.
What does strlen($str) return?
The length of $str.
What does strcmp($str1, $str2) return?
0 if the strings are identical, a negative number if the first string “comes” before the second (in the ASCII sequence) and a positive number if the second string comes before the first.
What does strpos($str1, $str2) return?
The character position of $str2’s position in $str1, if it exists.
What does substr($str, $int) return?
The substring of $str, from index $int to the end.
What does chop($str) return?
$str but will all whitespace removed from its end.
What does trim($str) return?
$str but will all whitespace removed from both ends.
What does ltrim($str) return?
$str but will all whitespace removed from its beginning.
What does strtolower($str) return?
$str in all lowercase.
What does strtoupper($str) return?
$str in all uppercase.
what does the following code output?
echo substr(“Apples are good”, 7, 2);
ar
what does the following code output?
echo strcmp(‘a’, ‘c’);
-2
What does strpos($str1, $str2) return if $str2 isn’t found in $str1? (PHP)
False.
What does the following code output?
$str = ‘Look at the sea’;
$str[strlen($str)-1] = ‘e’;
echo $str;
Look at the see
What is the output of the following code?
$x = “hi”[1];
echo $x;
i
In PHP, how many ways are there to explicitly convert (cast) a value?
3
Write 3 ways to cast the value in $x to an integer in PHP.
(int) $x
intval($x)
settype($x, “integer”)
How many ways are there to determine the type of a variable in PHP? What are they?
2 - gettype($x) or is_integer($x).
gettype($x) returns what if $x’s type can’t be determined?
“unknown”
When can a string be converted (or coerced) to an integer? (PHP)
If it begins with an integer.
In PHP, when can a string be converted (or coerced) to a double? (4 cases)
If the string begins with a double, a period, an e or an E.
If a PHP string does not begin with a sign or a digit, then what number is it implicitly converted (coerced) to?
0
What is NULL coerced to if the context specifies a number?
0
What is NULL coerced to if the context specifies a string?
”” (empty string)
What is the output of the following?
$str = ‘5.1’;
print($str+1);
6.1
What is the output of the following?
$str = ‘5.1’;
print((int)$str);
5
What is the output of the following?
$str = ‘5.5’;
print((int)$str);
5 - casting rounds down.
Which is faster, echo or print?
echo - but only slightly.
When using printf, what does %10s specify?
A character string field of 10 characters.
When using printf, what does %6d specify?
An integer field of six digits.
When using printf, what does %5.2f specify?
A float or double field of 5 digits before the decimal, and 2 digits after the decimal.
What’s the difference between != / == and !== / === ?
!= & == are type coercing.
Are >= & <= type coercing?
Yes.
Which is coerced when a string and a number are compared?
The string is coerced to a number, and numeric comparison is used.
If two strings are compared, PHP will never coerce both into numbers.
False - both will be coerced into numbers if both “look like” numbers.
Comparison operators should generally be used to compare strings.
False - strcmp() is (generally) preferred.
and, or, and xor are valid PHP Boolean operators.
True.
Which has higher precedence between && / || and the ‘and’ / ‘or’ Boolean operators?
&& / || have higher precendence.
switch ($val) {
case “0”: echo “zero”; break;
default: echo “not zero”;
}
Is this a valid PHP switch statement structure?
Yes.
The following constructs a valid array:
$list = array(1, 3, 5, 7, 9);
True.
The following constructs a valid array:
$list = array(1 => “Cessna”,
2 => “C210”,
3 => 1960,
4 => “sold”);
True.
The following keys can be replaced with strings:
$list = array(1 => “Cessna”,
2 => “C210”,
3 => 1960,
4 => “sold”);
True.
foreach($list as $key) allows you to iterate over the keys in $list.
False, this notation will iterate over the values, where each value can referred to by the $key variable.
Write a foreach loop that iterates over the keys AND values of a $list.
foreach($list as $key => $value)
The following allows you to iterate over keys:
foreach($list as $key =>)
False - this results in a parse error.
Where is the value ‘5’ placed in $list?
$list[] = 5;
At the last available index.
$nums = array(1, 2, 3);
Write a single line of code that assigns each value in $nums to its own variable, such as $a, $b, $c.
list($a, $b, $c) = $nums;
What method accepts an array, and returns an array of the keys from the passed array?
array_keys()
What method accepts an array, and returns an array of the values from the passed array? (PHP)
array_values()
What values are used as keys for the arrays constructed by array_keys() and array_values()?
Integer numbers, starting from 0.
What method returns true if the passed value exists as a key in the passed array?
array_key_exists()
What is the order of parameters passed to array_key_exists()?
array_key_exists($key, $list)
How can you delete an array in PHP?
unset($list);
The following is valid:
unset($list[4]);
True.
How do you check whether $list is an actual array?
is_array($list)
How do you check whether the value $x exists in $list?
in_array($x, $list)
How do you get the length of an array?
sizeof($list)
What is the output of the following code?
$list[4] = 1; $list[1] = 17;
$list[2] = 3; unset($list[2]);
foreach($list as $key => $value)
echo “$key $value <br>”;
4 1
1 17
Create an array of every word in $str (words separated by spaces).
explode(“ “, $str)
Create a string containing every value in $list (separate each value by a space).
implode(“ “, $list)
What is the output of the following code?
$list = array(“A”, “B”, “C”, “D”);
echo current($list);
A
What is the output of the following code?
$list = array(“A”, “B”, “C”, “D”);
echo next($list);
B
What does each($list) return?
A key-value pair of the “current” element. This method however has been deprecated.
Write another way to accomplish the following:
$list[] = $x;
array_push($list, $x);
Write another way to accomplish the following:
unset($list[sizeof($list) - 1]);
array_pop($list);
sort() sorts the array based off what? Are key/value relationships preserved?
sort() sorts the values and removes existing keys.
asort() sorts the array based off what? Are key/value relationships preserved?
asort() sorts the values and keeps key/value relationships - intended for hashes.
When is rsort() used?
To sort the values of an array into reverse order.
When is ksort used?
To sort the elements of an array by the keys, maintaining the key/value relationships.
When is krsort() used?
To sort the elements of an array by the keys into reverse order.
PHP functions can be called before being defined.
True - the entire document is parsed prior to execution.
Can you overload functions in PHP?
No.
Can PHP functions have a variable number of parameters?
Yes.
Can PHP function definitions be nested?
Yes.
Are PHP function names case sensitive?
No.
Can the return keyword be omitted from PHP function definitions?
Yes - its omission implies a void function.
Does PHP crash if more parameters are passed to a function than it is defined to accept?
No - the extra parameters are ignored.
Does PHP crash if less parameters are passed to a function than it is defined to accept?
No - the unmatched formal parameters are unbound (unless they’ve been given default values).
In PHP, by default, are parameters passed by value, or by reference?
By value.
How can you specify a pass-by-reference for a specific parameter in PHP?
Precede it with an ampersand:
function f(&$x) { … }
In PHP functions, can objects and arrays be returned in the same way as other primitive types?
Yes.
How can a function be made to return a reference?
Preceding the name of the function with an ampersand:
function &f() { … }
What is the output of the following code?
$a = 1; $b = 2; $c = 0;
function maxx(&$max,$a,$b) {
if($a>$b) $max = $a;
else $max = $b;
$a = 0;
}
maxx($c,$a,$b);
echo $c.” “.$a;
2 1
Do function variables live (exist) past the end of the function execution?
Normally, no.
What is the scope of an undeclared variable in a function?
It has the scope of the function.
How could you access a variable $x defined outside a function, from within that function.
global $x;
(Prior to the manipulation of $x).
What is the output of the following code?
$a = 1; $b = 2;
function Sum() {
global $a, $b;
$b = $a + $b;
}
Sum();
echo $b;
3
What PHP function checks whether a string matches a specified regex? What is the order of its parameters?
preg_match(regex, str [, array]);
What does the optional 3rd parameter do in preg_match()?
Passing an empty array as a third parameter means that array will be filled with all matches of pattern matching operation.
What does preg_match() return?
A Boolean (either true or false).
What PHP method splits a string into an array using a specified regex as a delimiter?
preg_split(regex,str);
In PHP, forms may be handled by the same document that
creates the form.
True.
What 2 methods can be used to transmit form data in PHP?
GET or POST.
How are names associated with their values in a query string?
By an equals sign: name = value
What types of characters are substituted with something else in query strings?
Special characters and spaces.
In query strings, what are special characters and spaces replaced by?
By % followed by the hex code for that character.
What common name must you give to all checkbox widgets to obtain an array of their values.
Something followed by ‘[]’.
Write a PHP class header for a Person object.
class Person { … }
How would you define 2 attributes (a1 & a2) within a class definition in PHP?
public $a1;
public $a2;
Define a constructor for a PHP class, C1, that has two attributes (a1 & a2).
public function __construct($a1, $a2) {
$this->a1 = $a1;
$this->a2 = $a2;
}
Write a public class method that returns a string containing both its attributes, a1 & a2.
public function greeting() {
return “{$this->a1} {$this->a2}”;
}
Can class methods be static in PHP?
Yes.
What keyword should never be used in a static class method in PHP?
this (followed by ->)
How are cookies created in PHP?
setcookie() method.
What are the parameters accepted by the setcookie() method?
setcookie(cookie_name, cookie_value, lifetime)
Can cookies be created at any time?
No, they must be created before any other HTML
is created by the script.
How could you iterate through all cookies?
Using the $_COOKIE array.
What does a cookie set look like in the http transaction? (server to client)
Set-Cookie: name=value;expires= …;path=/
What does a cookie get look like in the http transaction? (client to server)
Cookie: name=value
With your browser, you can view, delete and block cookies.
True.
Where are cookies stored (passed)?
In the HTTP request header.
Set a cookie to expire in a day from now.
setcookie(“key”, “value”, time() + 86400);
How can you check whether a specific cookie has been set?
isset($_COOKIE[“key”])
How can you delete a cookie?
setcookie(“key”, “”, time() - 1);
Does JS have built in ways of setting/getting cookies?
No.
Write a JS function to set cookies.
function setCookie(c_name,value,exdays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value=escape(value) + ((exdays==null) ? “” : “;
expires=”+exdate.toUTCString());
document.cookie=c_name + “=” + c_value;
}
Create an array of all cookies in JS, similar to $_COOKIES in PHP.
ARRcookies=document.cookie.split(“;”);
Are cookies returned to all servers?
No, only to the servers that created them.
Why may systems that depend on cookies fail?
If the browser refuses to store them.
How are sessions similar to cookies?
Holds info about one single user, and passes info between pages.
How are sessions different from cookies?
Information is stored server side, and session info is deleted after the user has left the website (if not saved).
How does PHP track sessions?
PHP creates and maintains a session tracking id.
Where is the session id stored?
Either stored in a cookie or propagated in the URL.
What PHP function creates a session id?
session_start()
Following session id creation, what do subsequent calls to session_start() do?
Subsequent calls to session_start() retrieve any session
variables that were previously registered in the session.
How do you register a session variable?
using $_SESSION[‘var_name’].
What restriction is put on the session_start() call if cookie-based sessions are being used?
It must be called before outputting anything to the browser.
How do you retrieve a session variable?
using $_SESSION[‘var_name’].
How do you delete a specific session variable?
unset($_SESSION[‘name’]);
How do you completely destroy a session?
session_destroy();
Does session_destroy() unset global variables? What about the session cookie?
No, but all other data associated with the current session is destroyed.
How can session variables be used again following session_destory()?
By first calling session_start() again.
What method returns a “file pointer”?
fopen();
What are the parameters of fopen()?
fopen(“filename.txt”, “x”);
where x is the use indicator.
List all the file use indicators.
r, r+, w, w+, a, a+.
Describe the ‘r’ use indicator.
Read only. File pointer initialized to the beginning of the file.
Describe the ‘r+’ use indicator.
Read and write and existing file. File pointer initialized at the beginning - read and write operations both move the same pointer.
Describe the ‘w’ use indicator.
Write only, initializes file pointer to the beginning of the file. Creates the file if it does not exist.
Describe the ‘w+’ use indicator.
Write and read, initializes file pointer to the beginning of the file. Creates the file if it does not exist. Always initializes file pointer to beginning before writing - destroying existing data.
Describe the ‘a’ use indicator.
Write only, initializes file pointer to the end of the file if it exists. Creates the file if it does not exist, and puts file pointer to the beginning.
Describe the ‘a+’ use indicator.
Read and write, creating the file if necessary; new data is written to the end of existing data.
How do you check if a file exists?
file_exists($filename)
How do you close a file?
f_close($file);
what are the parameters of the fread() method?
fread($file_var, $bytestoread)
What method returns the size of a file (in bytes)?
filesize($file);
What method returns the next car of an open $file?
fgetc($file)
Write a while loop that reads characters until the end of the file.
while(!feof($file_var)) {
$ch = fgetc($file_var);
}
Use fseek() to jump to the beginning of $file.
fseek($file, 0);
Use fseek() to jump to the 1000th byte of $file.
fseek($file, 1000);
Use fseek() to jump 100 bytes ahead of the current position in $file.
fseek($file, 100, SEEK_CUR);
Use fseek() to jump 100 bytes behind of the current position in $file.
fseek($file, -100, SEEK_CUR);
Use fseek() to jump 100 bytes behind the end of $file.
fseek($file, -100, SEEK_END);
Use a PHP function to write “Hello World” to $file.
fwrite($file, “Hello World”);
Does fwrite() return anything?
Yes, it returns the number of bytes written.