Learning Mode
Zend PHP 5.3 Certification Exam
Strings 1
PHP Basics
Functions and Arrays
Object Oriented Programming
Security
Data Format & Types
Strings and Patterns
Databases and SQL
Web Features
INPUT/OUTPUT
Basics 1
Arrays 1
Web Features 1
70 Questions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Question 3/31
What is the output of the following PHP script?
<?php $str
=
"It's \"good\""
; echo
strlen
(
addslashes
(
$str
));
?>
14
Solve it
Back
Next