01.
<?php
02.
03.
for
(
$q
=0;
$q
<4;
$q
++){}
04.
$result
[0]= 10;
05.
$result
[1]=58;
06.
$result
[2]=34;
07.
$result
[3]=88;
08.
$result
[4]=93;
09.
10.
11.
$num
= range(0,99);
12.
$all
=
count
(
$num
);
13.
for
(
$i
=0;
$i
<
$all
;
$i
++){
14.
$j
= @mt_rand(0,
$i
);
15.
$temp
=
$num
[
$i
];
16.
$num
[
$i
] =
$num
[
$j
];
17.
$num
[
$j
] =
$temp
;
18.
}
19.
20.
21.
22.
for
(
$s
=0;
$s
<44;
$s
++){
23.
24.
25.
}
26.
27.
28.
if
(
$num
[
$s
]===
$result
[
$q
]){
29.
30.
print(
"True"
);
31.
32.
}
33.
34.
else
{
35.
36.
print(
"False"
);
37.
}
38.
39.
40.
41.
print(
$num
[
$s
].
'<br>'
);
42.
43.
44.
?>