200-710 試験問題を無料オンラインアクセス
| 試験コード: | 200-710 |
| 試験名称: | Zend Certified Engineer |
| 認定資格: | Zend-Technologies |
| 無料問題数: | 235 |
| 更新日: | 2026-09-17 |
You want to access the 3rd character of a string, contained in the variable $test. Which of the following
possibilites work? (Choose 2)
What is the output of the following code?
$ a= 3;
switch ($a) {
}
case 1: echo 'one'; break;
case 2: echo 'two'; break;
default: echo 'four'; break;
case 3: echo 'three'; break;
What is the output of the following code?
function increment (&$val)
{
return $va I + 1;
$ a= 1;
echo increment ($a);
echo increment ($a);