|
|
|
PHP MySQL Search Hilight การทำ ไฮไลท์ คำที่ค้นหา การทำไฮไลท์ คำที่ค้นพบ เช่น ค้นหาคำว่า php |
|
|
|
|
|
|
|
Code (PHP)
<?php
$text = 'Lorem ipsum dolor sit amet, consectetuer
adipiscing elit. Vestibulum blandit mollis risus.';
class highlight
{
public $output_text;
function __construct($text, $words)
{
$split_words = explode( " " , $words );
foreach ($split_words as $word)
{
$color = self::generate_colors();
$text = preg_replace("|($word)|Ui" ,
"<span style=\"background:".$color.";\"><b>$1</b></span>" , $text );
}
$this->output_text = $text;
}
private function rgbhex($red, $green, $blue)
{
return sprintf('#%02X%02X%02X', $red, $green, $blue);
}
private function generate_colors()
{
$red = rand( rand(60,100) , rand(200,252) );
$green = rand( rand(60,100) , rand(200,252) );
$blue = rand( rand(60,100) , rand(200,252) );
$color = self::rgbhex( $red , $green , $blue );
return $color;
}
}
$highlight = new highlight($text , 'lorem dolor blandit');
echo $highlight->output_text;
//Thank & Ref : http://www.php-help.ro/php-tutorials/php-highlight-search-keywords/
?>
|
|
|
|
|
Date :
2009-08-03 23:10:39 |
By :
panyapol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2009-08-03 23:12:18 |
By :
panyapol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ คุณ P@e
|
|
|
|
|
Date :
2009-08-03 23:17:53 |
By :
pun05 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยินดีครับ
|
|
|
|
|
Date :
2009-08-03 23:19:29 |
By :
panyapol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วถ้าจะ ไิฮไลท์ ให้ค่าที่เราไฮไลท์ ถ้าตรงกับข้อมูลในดาต้าเบสที่มาโชว์ ให้มันไปสีไฮไลท์ ได้ไหมคับ แบบนี้อะ
ค่าที่จะไอไลท์ =38000
ค่าที่ query ออกมาจาก database
38000001
38000002
38000003
38000004
ที่ต้องการคือ ไอไลท์ เฉพาะ ตัว 3800 อะคับ
|
|
|
|
|
Date :
2011-04-01 09:43:37 |
By :
suzana |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$hi = "38000";
$va = "38000001";
echo str_replace($hi, "<font color=red>$hi</font>", $va);
|
|
|
|
|
Date :
2011-04-01 10:10:44 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากคับ ได้ละคับ
|
|
|
|
|
Date :
2011-04-01 11:45:17 |
By :
suzana |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2012-05-06 21:20:33 |
By :
classic23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กระทู้นี่ผ่านมาเกือบ 3 ปีแล้ว ยังมีประโยชน์จริง ๆ
|
|
|
|
|
Date :
2012-05-07 06:40:25 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆค่ะ
|
|
|
|
|
Date :
2012-09-28 17:50:53 |
By :
มะนาวหวาน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2016-07-08 10:09:15 |
By :
TRIBIIZ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|