1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/lang/001.phpt
2004-05-19 08:45:46 +00:00

7 lines
98 B
PHP

--TEST--
Simple If condition test
--FILE--
<?php $a=1; if($a>0) { echo "Yes"; } ?>
--EXPECT--
Yes