評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]
[php]
function get_programe($source,$start_key,$end_key){
$end=strrpos($source,$end_key);//返回 尾端關鍵字 所在位置
$start=strrpos($source,$start_key)+1;//返回 前端關鍵字 所在位置 因為是從後方搜尋 所以要再加1 才能取得正確的字串
$length=$end-$start;//計算要獲取字串的字度
return substr($source,$start,$length);//返回 截取結果
}
[/php]
評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]