mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
9 lines
115 B
Plaintext
9 lines
115 B
Plaintext
|
--TEST--
|
||
|
Simple If condition test
|
||
|
--POST--
|
||
|
--GET--
|
||
|
--FILE--
|
||
|
<?php $a=1; if($a>0) { echo "Yes"; } ?>
|
||
|
--EXPECT--
|
||
|
Yes
|