200-710 Exam Question 51
Which of the following functions are used to escape data within the context of HTML? (Choose 2)
200-710 Exam Question 52
What is the output of the following code?
function z($x) {
return function ($y) use ($x) {
return str_repeat($y, $x);
};
$ a== z(2);
$ b = z(3);
echo $a(3) . $b(2);
function z($x) {
return function ($y) use ($x) {
return str_repeat($y, $x);
};
$ a== z(2);
$ b = z(3);
echo $a(3) . $b(2);