常用lua命令
# 判断字符串包含另外一个字符串
local isGlobleBlack = string.match("http://CCBWebView:443/dfss,http://dsas:66/sda","http://CCBWebView:443/");
if isGlobleBlack ~=ngx.null and isGlobleBlack then
ngx.say("have")--包含
else
ngx.say("no")--不包含
end
--isGlobleBlack值为http://CCBWebView:443/
1
2
3
4
5
6
7
2
3
4
5
6
7
# if...else 语句
if(布尔表达式)
then
--[ 布尔表达式为 true 时执行该语句块 --]
else
--[ 布尔表达式为 false 时执行该语句块 --]
end
1
2
3
4
5
6
2
3
4
5
6
上次更新: 2023/03/10, 09:02:56