[PHP] 특정 단어를 기준으로 앞 뒤로 일정 수의 문자열 가져오기
오늘도 역시 제목 짓는 게 가장 어렵다는 것을 느끼면서.. 삽질의 결과물을 올려본다. 구글에서 검색을 해보면 검색 결과에 검색어가 들어간 내용 중 일부를 보여주는 것을 알 수 있다. 그런 것을 구현해 보고 싶었다. 물론 아래 코드는 아주 기본적이고 간단한 코드이다. 좀 더 구현하고 싶은 게 있긴 한데.. 그건 좀 더 생각을 정리해야 할 필요가 있기 때문에 우선 지금까지 해본 것만 기록으로 남긴다.
데모 : http://codepub.net/php/partialString.php
<?php
function partialString($str, $search, $addLength=5, $addString='...')
{
list($before, $after) = explode($search, $str);
$before = rtrim($before);
$after = ltrim($after);
$arr_before = array_reverse(explode(' ', $before));
$arr_after = explode(' ', $after);
$count_before = count($arr_before);
$count_after = count($arr_after);
$before_string = '';
if($count_before < $addLength) {
$before_string = implode(' ', $arr_before);
} else {
for($i=0; $i<$addLength; $i++) {
$before_string = $arr_before[$i] . ' ' . $before_string;
}
}
$after_string = '';
if($count_after < $addLength) {
$after_string = implode(' ', $arr_after);
} else {
for($i=0; $i<$addLength; $i++) {
$after_string = $after_string . $arr_after[$i] . ' ';
}
}
$string = ($before_string ? $addString : '') . $before_string . $search . ' ' . $after_string . ($after_string ? $addString : '');
return $string;
}
$str = 'PHP is a popular general-purpose scripting language that is especially suited to web development. Fast, flexible and pragmatic, PHP powers everything from your blog to the most popular websites in the world.';
$search = 'Fast';
echo str_replace($search, '<strong>'.$search.'</strong>', partialString($str, $search));
?>
위 코드를 실행하면 데모에서도 확인할 수 있듯이 …especially suited to web development. Fast , flexible and pragmatic, PHP … 라고 출력이 된다. 이 코드를 가지고 좀 더 지지고 볶으면 좀 더 멋진 기능을 할 수 있을 것 같은데.. 오늘은 피곤하니까 이만..!!