/home/httpd/html/test/xdebug/code-coverage
test.php
Code Coverage
Classes and Traits
Functions and Methods
Lines
Total
CRAP
100.00% covered (success)
100.00%
7 / 7
ifthenelse( $a, $b )
100.00% covered (success)
100.00%
1 / 1
0
100.00% covered (success)
100.00%
7 / 7
1
<?php
2
function
ifthenelse
(
$a
,
$b
)
3
{
4
if
(
$a
)
{
5
echo
"A HIT\n"
;
6
}
7
if
(
$b
)
{
8
echo
"B HIT\n"
;
9
}
10
}
11
?>