2Hi.Biz
Trang chủ | TWIG | Xtscript | Templates | Xtgem
xtscript Việt hóa 2015
AiChat.Wap.Sh
if not or
Nếu tuyên bố tạo ra các chi nhánh và các công tắc của Xtscript của bạn
[...] = optional ... = your valueif not ... or ...
...
[else
...]
endif
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 not ... Or ...
# simulates $x > 50 and $y < 50
if not $x >= 50 or $y > 50
print \$x is less than 50 or \$y is more than 50<hr />
else
print \$x is more than 50 \$y is less than 50<hr />
endif

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

<!--/parser:xtscript-->
Code đã chạy;
$x is less than 50 or $y is more than 50
$x=33 $y=75