1. 程式人生 > >mysql中利用函式與過程過濾html標籤

mysql中利用函式與過程過濾html標籤

如果要過濾html標籤多半同學都使用php的函數了,但是大家不知道是可以直接在mysql中進行去除htm標籤吧,下面一起來看看吧。

mysql本身沒有去除html程式碼的內建函式,但是在一些情況下,不得不在資料庫層次提取一些去除了html程式碼的純文字。

經過谷歌後,找到了以下函式,經測試,可用。第二個phpmyadmin 報錯。navicat 可以以

SET GLOBAL log_bin_trust_function_creators=1; DROP FUNCTION IF EXISTS fnStripTags; DELIMITER | CREATE FUNCTION fnStripTags( Dirty varchar(4000) ) RETURNS varchar(4000) DETERMINISTIC BEGIN DECLARE iStart, iEnd, iLength int; WHILE Locate( '<', Dirty ) > 0 And Locate( '>', Dirty, Locate( '<', Dirty )) > 0 DO BEGIN SET iStart = Locate( '<', Dirty ), iEnd = Locate( '>', Dirty, Locate('<', Dirty )); SET iLength = ( iEnd - iStart) + 1; IF iLength > 0 THEN BEGIN SET Dirty = Insert( Dirty, iStart, iLength, ''); END; END IF; END; END WHILE; RETURN Dirty; END; | DELIMITER ; SELECT fnStripTags('<p>this is a test, nothing more</p>');

CREATE FUNCTION `strip_tags`($str text) RETURNS text BEGIN DECLARE $start, $end INT DEFAULT 1; LOOP SET $start = LOCATE("<", $str, $start); IF (!$start) THEN RETURN $str; END IF; SET $end = LOCATE(">", $str, $start); IF (!$end) THEN SET $end = $start; END IF; SET $str = INSERT($str, $start, $end - $start + 1, ""); END LOOP; END; select strip_tags('<p>hello world again <strong>jack!</strong></p>');