嘿伙计们我不知道如何在AS3中写这个,但基本上我需要对一些字符串进行检查。如果他们的名字前面有BTS或TS,那么就这样做,否则什么都不做。
PHP脚本:
$theid =$this->uri->segment(3);
if(substr($theid,0,3) =='BTS'){
$theid = str_replace('BTS', 'TS', $theid);
}
$video = $this->ecx_model->custom_search_small($theid,'any','reference_id');
答案 0 :(得分:3)
if (!theid.indexOf("BTS")) theid = theid.replace(/BTS/g, "TS");
答案 1 :(得分:1)