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