Which property is used to operate the memory object data?
Which property is used to operate the memory object data?
Which method is used to clear or invalidate a particular cache ID?
Which method is used to clear or invalidate a particular cache ID?
Which method is used to store the cache records into a SQLite database?
Which method is used to store the cache records into a SQLite database?
Which of the following is a common feature of the Front Controller plugins and ActionHelpers?
Which of the following is a common feature of the Front Controller plugins and ActionHelpers?
How can you do this?
You work for a shared hosting provider, and your supervisor asks you to disable user scripts to
dynamically load PHP extensions using the dl() function. How can you do this? (Choose 2)
Which of the following statements is NOT true?
Which of the following statements is NOT true?
a) Class constants are public
b) Class constants are being inherited
c) Class constants can omit initialization (default to NULL)
d) Class constants can be initialized by consts
Type hinting in PHP allows the identification of the following variable types: (Choose 2)
Type hinting in PHP allows the identification of the following variable types: (Choose 2)
How many elements does the $matches array contain after the following function call is performed? preg_match(&
How many elements does the $matches array contain after the following function call is
performed?
preg_match(‘/^(\d{1,2}([a-z]+))(?:\s*)\S+ (?=200[0-9])/’, ’21st March 2006′, $matches);
what will be the value of $a?
Given the following code, what will be the value of $a?
<code>
$a = array(‘a’, ‘b’);
array_push($a, array(1, 2));
</code>
When a class is defined as final it:
When a class is defined as final it: