mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
14 lines
121 B
PHP
14 lines
121 B
PHP
--TEST--
|
|
Simple If/Else Test
|
|
--FILE--
|
|
<?php
|
|
$a=1;
|
|
if($a==0) {
|
|
echo "bad";
|
|
} else {
|
|
echo "good";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
good
|