Zend-Technologies Zend PHP 5.3 Certification - 200-530무료 덤프문제 풀어보기
Which methods can be used to overload object properties? (Choose 2)
정답: A,D
Which PHP function relieves a 1st of HTTP headers that have been sent as part of the HTTP response or are ready to be sent?
정답: B
Under which circumstances is the $_SESSION super-global available? (Choose 2)
정답: B,E
What is the output of the following code?
echo '1' . (print '2') + 3;
echo '1' . (print '2') + 3;
정답: A
An HTML form contains this form element
<input type="file" name="myFile" />
When this form is submitted, the following PHP code gets executed:
move_uploaded_file(
$_FILES['myFile']['tmp_name'],
'uploads/' . $_FILES['myFile']['name']);
Which of the following actions must be taken before this code may go into production?
(Choose 2)
<input type="file" name="myFile" />
When this form is submitted, the following PHP code gets executed:
move_uploaded_file(
$_FILES['myFile']['tmp_name'],
'uploads/' . $_FILES['myFile']['name']);
Which of the following actions must be taken before this code may go into production?
(Choose 2)
정답: D,E
Which of the following statements about Reflection are correct? (Choose 2)
정답: A,B
When uploading a file to a PHP script using the HTTP PUT method, where would the information about this file be available?
정답: B
Which of the following statements is correct?
정답: C
A script residing at http://example.com/phpcert/cookies.php contains the following code:
1 <?php
2 setcookie('name1', 'value1', time() + 60*60*24, '/');
3 setcookie('name1', 'value2');
4 ?>
The web browser is configured to accept all cookies. How many cookies will be set by this script?
1 <?php
2 setcookie('name1', 'value1', time() + 60*60*24, '/');
3 setcookie('name1', 'value2');
4 ?>
The web browser is configured to accept all cookies. How many cookies will be set by this script?
정답: B
Consider the following code:
strspn($test, 'aeiou', 1);
The variable $test contains the string "You get certified".
What will the function call return?
strspn($test, 'aeiou', 1);
The variable $test contains the string "You get certified".
What will the function call return?
정답: C
What will the following code piece print?
echo strtr('Apples and bananas', 'ae', 'ea')
echo strtr('Apples and bananas', 'ae', 'ea')
정답: C
Which of the following parts must a XML document have in order to be well-formed?
정답: B
What is the purpose of the 4th argument to the file_get_contents() function?
정답: D
Which 2.17of the following formats is used to describe web services?
정답: D
The following code piece should print "PHP is cool", but unexpectedly, it just prints "cool". How would you correct it?
echo str_replace('PHP is a pain.', 'a pain', 'cool');
echo str_replace('PHP is a pain.', 'a pain', 'cool');
정답: C