2Hi.Biz
Trang chủ | TWIG | Xtscript | Templates | Xtgem
xtscript Việt hóa 2015
AiChat.Wap.Sh
if and
nếu ...và...
Trong tuyên bố nếu Xtscripts
Bạn sẽ phải sử dụng khác nếu tùy chọn để mô phỏng và Xem các liên kết chức năng liên quan dưới đây
Code ví dụ:
<!--parser:xtscript-->
# 2 random numbers
var $x = call mt_rand $min=1;$max=100
var $y = call mt_rand $min=1;$max=100

# If ... and ...

if $x > 0 and $y == 1
print The<b> and \$y == 1</b> is ignored <hr />
else
print This never shows <hr />
endif

print \$x=$x \$y=$y<br />

<!--/parser:xtscript-->
Code đã chạy;
The and $y == 1 is ignored
$x=32 $y=42