master
LMR 1 year ago
parent 9432e6f43f
commit bd5eecc3c6

@ -56,7 +56,9 @@ class infofix extends CI_Controller
$sub_content = array(); $sub_content = array();
while ($pos_content) { while ($pos_content) {
$_str = '[...' . mb_substr($info->ic_content, $pos_content - $limitStr, mb_strlen($key) + $limitStr * 2) . '...]'; $_str = '[...' . mb_substr($info->ic_content, $pos_content - $limitStr, mb_strlen($key) + $limitStr * 2) . '...]';
array_push($sub_content, str_replace($key,'@@@'.$key.'@@@',$_str)); $_str = str_replace($key,'@@@'.$key.'@@@',$_str);
$_str = explode('@@@',$_str);
array_push($sub_content, $_str);
$pos_content = mb_stripos($info->ic_content, $key, $pos_content + mb_strlen($key)); $pos_content = mb_stripos($info->ic_content, $key, $pos_content + mb_strlen($key));
} }
@ -68,7 +70,9 @@ class infofix extends CI_Controller
$pos_content2 = mb_stripos($info->amp_json, $key); $pos_content2 = mb_stripos($info->amp_json, $key);
while ($pos_content2) { while ($pos_content2) {
$_str = '[...' . mb_substr($info->amp_json, $pos_content2 - $limitStr, mb_strlen($key) + $limitStr * 2) . '...]'; $_str = '[...' . mb_substr($info->amp_json, $pos_content2 - $limitStr, mb_strlen($key) + $limitStr * 2) . '...]';
array_push($sub_content2, str_replace($key,'@@@'.$key.'@@@',$_str)); $_str = str_replace($key,'@@@'.$key.'@@@',$_str);
$_str = explode('@@@',$_str);
array_push($sub_content2, $_str);
$pos_content2 = mb_stripos($info->amp_json, $key, $pos_content2 + mb_strlen($key)); $pos_content2 = mb_stripos($info->amp_json, $key, $pos_content2 + mb_strlen($key));
} }
} }
@ -80,7 +84,9 @@ class infofix extends CI_Controller
$pos_content3 = mb_stripos($info->amp_body, $key); $pos_content3 = mb_stripos($info->amp_body, $key);
while ($pos_content3) { while ($pos_content3) {
$_str = '[...' . mb_substr($info->amp_body, $pos_content3 - $limitStr, mb_strlen($key) + $limitStr * 2) . '...]'; $_str = '[...' . mb_substr($info->amp_body, $pos_content3 - $limitStr, mb_strlen($key) + $limitStr * 2) . '...]';
array_push($sub_content3, str_replace($key,'@@@'.$key.'@@@',$_str)); $_str = str_replace($key,'@@@'.$key.'@@@',$_str);
$_str = explode('@@@',$_str);
array_push($sub_content3, $_str);
$pos_content3 = mb_stripos($info->amp_body, $key, $pos_content3 + mb_strlen($key)); $pos_content3 = mb_stripos($info->amp_body, $key, $pos_content3 + mb_strlen($key));
} }
} }

Loading…
Cancel
Save