mirror of
https://github.com/php/php-src.git
synced 2025-01-24 20:53:37 +08:00
7 lines
98 B
PHP
7 lines
98 B
PHP
--TEST--
|
|
Simple If condition test
|
|
--FILE--
|
|
<?php $a=1; if($a>0) { echo "Yes"; } ?>
|
|
--EXPECT--
|
|
Yes
|