2Hi.Biz
Trang chủ
|
TWIG
|
Xtscript
|
Templates
|
Xtgem
Functions Xtscript
AiChat.Wap.Sh
stripos
Tìm vị trí của sự xuất hiện đầu tiên của một chuỗi con trong một chuỗi
[...] = optional ... = your value[var $... = ]call stripos $haystack=…;$needle=…[;$offset=…]
$offset
bù đắp giá trị này không làm việc
Code ví dụ:
<!--parser:xtscript-->
var $haystack = abefcdefghijklm
var $needle = EF
var $offset = 4
var $position = call stripos $haystack=$haystack; $needle=$needle; $offset=$offset ;
print haystack = $haystack<br />
print needle = $needle<br />
print offset = $offset<br />
print position = $position
<!--/parser:xtscript-->
<!--parser:xtscript--> var $haystack = abefcdefghijklm var $needle = EF var $offset = 4 var $position = call stripos $haystack=$haystack; $needle=$needle; $offset=$offset ; print haystack = $haystack<br /> print needle = $needle<br /> print offset = $offset<br /> print position = $position <!--/parser:xtscript-->
Code đã chạy:
haystack = abefcdefghijklm
needle = EF
offset = 4
position = 6