What SimpleXML function is used to parse a file?
A. simplexml_load_file()
B. simplexml_load_string()
C. load()
D. loadFile()
E. loadXML()
F. None of the above.
What content-type is required when sending an HTTP POST using JavaScript to ensure that PHP can access the data?
A. application/x-www-form-urlencoded
B. http/post
C. text/html
D. object/multipart-formdata
In order to create an object storage where each object would be stored only once, you may use which of the following? (Choose 2)
A. SplFixedArray
B. SplObjectStorage
C. SplString
D. spl_object_hash
E. spl_same_object
What is the output of the following code? $f = function () { return "hello"; }; echo gettype($f);
A. hello
B. string
C. object
D. function
Given the following DateTime object, which sample will NOT alter the date to the value '2014-02-15'? $date = new DateTime('2014-03-15');
A. $date->sub(new DateInterval('P1M'));
B. $date->setDate(2014, 2, 15);
C. $date->modify('-1 month');
D. $date->diff(new DateInterval('-P1M'));
Given the following code, what will the output be:
trait MyTrait {
private $abc = 1;
public function increment() {
$this->abc++;
}
public function getValue() {
return $this->abc;
}
}
class MyClass {
use MyTrait;
public function incrementBy2() {
$this->increment();
$this->abc++;
}
}
$c = new MyClass;
$c->incrementBy2();
var_dump($c->getValue());
A. Fatal error: Access to private variable MyTrait::$abc from context MyClass
B. Notice: Undefined property MyClass::$abc
C. int(2)
D. int(3)
E. NULL
You'd like to use the class MyDBConnection that's defined in the MyGreatFramework \MyGreatDatabaseAbstractionLayer namespace, but you want to minimize *as much as possible* the length of the class name you have to type. What would you do?
A. Import the MyGreatFramework namespace
B. Import the MyGreatFramework\MyGreatDatabaseAbstractionLayer namespace
C. Alias MyGreatFramework\MyGreatDatabaseAbstractionLayer\MyDBConnection to a shorter name
D. Alias MyGreatFramework\MyGreatDatabaseAbstractionLayer to a shorter name
Consider 3 PHP files that are called asynchronously via XmlHttpRequest: Which of the following statements is true? (Choose two.)
A. The total execution time for all 3 requests will be the maximum of the longest sleep() call
B. The requests may be processed out of order
C. The requests are guaranteed to be executed in order
D. Concurrent requests will be blocked until the session lock is released
What is the benefit of using persistent database connections in PHP? (Choose two.)
A. Reduces the connection and authentication overhead of connecting to the database
B. Ensures that only a single connection is open to the database from PHP
C. Allows connection settings such as character set encoding to persist
D. Allows for resumption of transactions across multiple requests.
In the following code, which classes can be instantiated?
abstract class Graphics {
abstract function draw($im, $col);
}
abstract class Point1 extends Graphics {
public $x, $y;
function __construct($x, $y) {
$this->x = $x;
$this->y = $y;
}
function draw($im, $col) {
ImageSetPixel($im, $this->x, $this->y, $col);
}
}
class Point2 extends Point1 { }
abstract class Point3 extends Point2 { }
A. Graphics
B. Point1
C. Point2
D. Point3
E. None, the code is invalid
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Zend exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 200-710 exam preparations and Zend certification application, do not hesitate to visit our Vcedump.com to find your solutions here.