sql去掉html標籤

2021-09-27 11:49:07 字數 1208 閱讀 8159

開啟-信任儲存函式建立者

簡單介紹一下,當二進位制日誌啟用後,這個變數就會啟用。它控制是否可以信任儲存函式建立者,不會建立寫入二進位制日誌引起不安全事件的儲存函式。如果設定為0(預設值),使用者不得建立或修改儲存函式,除非它們具有除create routine或alter routine特權之外的super許可權。 設定為0還強制使用deterministic特性或reads sql data或no sql特性宣告函式的限制。 如果變數設定為1,mysql不會對建立儲存函式實施這些限制。 此變數也適用於觸發器的建立。

在my.cnf配置檔案中加入

log_bin_trust_function_creators=1
編寫函式
drop function if exists fnstriptags;

delimiter |

create function fnstriptags( dirty text )

returns text

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('this isa test, nothing more');
select * from user where fnstriptags(user.info) like '%liuyunsheng%'

去掉html標籤的js

為了乙個title去html標籤所做的修改 function delhtmltag str,obj obj.title title 1 去掉字串前後所有空格 如下 function trim str 說明 如果使用jquery直接使用 trim str 方法即可,str表示要去掉前後所有空格的字串。...

去掉 NSString 中的html標籤

ida 該方法用於去除nsstring中的html標籤 brief 去掉字串nsstring中的html標籤 param html 要修改的nsstring param trim 是否要將nsstring 中開始的空白用 替換,yes會替換,no不會替換 return nsstring 去掉html...

sql去除html標籤

分類 sql舉報 sql資料庫sql函式 1 建立函式 sql view plain copy create function dbo clearhtml maco varchar 8000 returns varchar 8000 as begin declare i int while 1 1 ...