यह आपको "संदर्भ" भाग पर आरंभ करना चाहिए...
// return the part of the content where the keyword was matched
function get_surrounding_text($keyword, $content, $padding)
{
$position = strpos($content, $keyword);
// starting at (where keyword was found - padding), retrieve
// (padding + keyword length + padding) characters from the content
$snippet = substr($content, $position - $padding, (strlen($keyword) + $padding * 2));
return '...' . $snippet . '...';
}
$content = 'this is a really long string of characters with a magic word buried somewhere in it';
$keyword = 'magic';
echo get_surrounding_text($keyword, $content, 15); // echoes '... string with a magic word in it...'
यह फ़ंक्शन उन मामलों के लिए जिम्मेदार नहीं है जहां पैडिंग सीमाएं सामग्री स्ट्रिंग के बाहर जाती हैं, जैसे कि जब कीवर्ड सामग्री की शुरुआत या अंत के पास पाया जाता है। यह कई मैचों आदि के लिए भी जिम्मेदार नहीं है। लेकिन उम्मीद है कि कम से कम आपको सही दिशा में इंगित करना चाहिए।