【LUA】只需花费你半天时间
wptr33 2025-01-21 21:56 12 浏览
前言:有一段时间使用OpenResty写Waf防护模块的时候使用到了Lua。Lua 是一种轻量小巧的脚本语言,用标准C语言编写并以源代码形式开放, 其设计目的是为了嵌入应用程序中,从而为应用程序提供灵活的扩展和定制功能。
学习Lua代码,从变量到跑路
x=1 --全局变量
local x=1 --局部变量
function a()
b=2 --全局变量
local c=2 --局部变量
end
print(b,c) -- 2,nil
local _M = {} --空tabel 也叫空数组
_M["key"] = "value" --填充值
--给tabel增加方法
_M.Find = function()
print("local")
end
d,d2 = 2,3 -- 定义值,多个
d,d2 = d2,d --swap交换值
print(d,d2) --3,2
--条件语句
if true then
print(xxx)
end
if true then
print(xx)
else
if false then
print(x)
end
end
--遍历tabel
for k,v in ipairs(_M) do
print(k,v)
end
--ipairs和pairs都是的迭代器,区别,
--ipairs遇到tabel内容为nil的时候,终止循环
--注意:lua迭代器下标是从1开始
for k,v in pairs(_M) do
print(k,v)
end
--循环
--x=初始值,最大值,步长值 步长值代表每次递增多少数
for x=1,10,3 do
print(x)
end
--while循环
local a = 10
while(a<100)
do
a = a+10
print(a)
end
--repeat-until循环,先执行,后判断,类似语言do---while
local b = 10
repeat
print(b)
b = b+1
until(b>15) --当b大于15的时候结束循环
--函数定义,系统默认是全局
function a() do
print("all in")
end
--局部函数使用local,也支持向tabel添加方法
local func = function()
print("local")
end
--可变参数,接受未知个参数
funciton args(...)
local result = 0
---将参数写入tabel
local arg = {...}
for k,v = ipairs(arg) do
print(k,v)
end
--#arg代表统计有多少个参数
print("参数总数:",#arg)
end
--Demo(当传入为nil参数的时候,是不算个数):
function fun(...)
local x={...}
print(#x)
end
fun(1,2,3,4,5,nil) --5
fun(1,2,3,4,5,0) --6
---#xx 统计坑,取决于最大的索引值,如果有越标行为,则按越标前一位计算总数
local xx = {}
xx[1] = 2
xx[2] = 3
print(#xx)
local xx = {}
xx[1] = 2
xx[8] = 3
print(#xx)
--字符串
local x = "aaaaa"
local x = ’aaaaa‘
local x = [[
一组模板数据
]]
--字符串连接 ..
local c = x..b
--模块与包
--定义a.lua文件
a = {}
a.constant = "常量"
a.func1 = function()
print("a模块 1方法")
end
a.func2 = function()
print("a模块 2方法")
end
return a
--定义b.lua文件
--require("a")
require("a")
a.func1()
--local m = require("a")
m.func1()
--lua加载c库
local path = "/usr/local/lua/lib/libluasocket.so"
-- 或者 path = "C:\\windows\\luasocket.dll",这是 Window 平台下
local f = assert(loadlib(path, "luaopen_socket"))
f() -- 真正打开库
--协同程序
function foo (a)
print("foo 函数输出", a)
return coroutine.yield(2 * a) -- 返回 2*a 的值
end
co = coroutine.create(function (a , b)
print("第一次协同程序执行输出", a, b) -- co-body 1 10
local r = foo(a + 1)
print("第二次协同程序执行输出", r)
local r, s = coroutine.yield(a + b, a - b) -- a,b的值为第一次调用协同程序时传入
print("第三次协同程序执行输出", r, s)
return b, "结束协同程序" -- b的值为第二次调用协同程序时传入
end)
print("main", coroutine.resume(co, 1, 10)) -- true, 4
print("--分割线----")
print("main", coroutine.resume(co, "r")) -- true 11 -9
print("---分割线---")
print("main", coroutine.resume(co, "x", "y")) -- true 10 end
print("---分割线---")
print("main", coroutine.resume(co, "x", "y")) -- cannot resume dead coroutine
print("---分割线---")
--[[
第一次运行之后,挂起yield
第二运行,先执行上次的yield输出,再执行本次调用
第三次运行,执行上一次yield输出,再执行本次
结束协同程序
第四次就提示dead了
]]
--文件操作,基于io类
--打开
file = io.open("文件名","打开方式") --r w a r+ w+ a+ b
--读取
io.input(file)
io.read()
--写入
io.output(file)
io.write("hhhhh")
--关闭
io.close(file)
--面向对象
A = {t=0}
A.func1 = function()
print(A.t)
end
--继承
B = {area=0}
--基础类
B:new =function(o,p2)
o = o or {}
setmetatable(o, self)
self.__index = self
side = side or 0
self.area = side*side;
return o
end
-- 基础类方法 printArea
function B:printArea()
print("面积为 ",self.area)
end
-- 创建对象
myshape = Shape:new(nil,10)
myshape:printArea()
Square = Shape:new()
-- 派生类方法 new
function Square:new (o,side)
o = o or Shape:new(o,side)
setmetatable(o, self)
self.__index = self
return o
end
-- 派生类方法 printArea
function Square:printArea ()
print("正方形面积为 ",self.area)
end
-- 创建对象
mysquare = Square:new(nil,10)
mysquare:printArea()
Rectangle = Shape:new()
-- 派生类方法 new
function Rectangle:new (o,length,breadth)
o = o or Shape:new(o)
setmetatable(o, self)
self.__index = self
self.area = length * breadth
return o
end
-- 派生类方法 printArea
function Rectangle:printArea ()
print("矩形面积为 ",self.area)
end
-- 创建对象
myrectangle = Rectangle:new(nil,10,20)
myrectangle:printArea()
总结
如果你有用到openresty作一个补丁包开发,建议使用lua脚本方式,随然c也可以实现...
前言:有一段时间使用OpenResty写Waf防护模块的时候使用到了Lua。Lua 是一种轻量小巧的脚本语言,用标准C语言编写并以源代码形式开放, 其设计目的是为了嵌入应用程序中,从而为应用程序提供灵活的扩展和定制功能。
学习Lua代码,从变量到跑路
x=1 --全局变量
local x=1 --局部变量
function a()
b=2 --全局变量
local c=2 --局部变量
end
print(b,c) -- 2,nil
local _M = {} --空tabel 也叫空数组
_M["key"] = "value" --填充值
--给tabel增加方法
_M.Find = function()
print("local")
end
d,d2 = 2,3 -- 定义值,多个
d,d2 = d2,d --swap交换值
print(d,d2) --3,2
--条件语句
if true then
print(xxx)
end
if true then
print(xx)
else
if false then
print(x)
end
end
--遍历tabel
for k,v in ipairs(_M) do
print(k,v)
end
--ipairs和pairs都是的迭代器,区别,
--ipairs遇到tabel内容为nil的时候,终止循环
--注意:lua迭代器下标是从1开始
for k,v in pairs(_M) do
print(k,v)
end
--循环
--x=初始值,最大值,步长值 步长值代表每次递增多少数
for x=1,10,3 do
print(x)
end
--while循环
local a = 10
while(a<100)
do
a = a+10
print(a)
end
--repeat-until循环,先执行,后判断,类似语言do---while
local b = 10
repeat
print(b)
b = b+1
until(b>15) --当b大于15的时候结束循环
--函数定义,系统默认是全局
function a() do
print("all in")
end
--局部函数使用local,也支持向tabel添加方法
local func = function()
print("local")
end
--可变参数,接受未知个参数
funciton args(...)
local result = 0
---将参数写入tabel
local arg = {...}
for k,v = ipairs(arg) do
print(k,v)
end
--#arg代表统计有多少个参数
print("参数总数:",#arg)
end
--Demo(当传入为nil参数的时候,是不算个数):
function fun(...)
local x={...}
print(#x)
end
fun(1,2,3,4,5,nil) --5
fun(1,2,3,4,5,0) --6
---#xx 统计坑,取决于最大的索引值,如果有越标行为,则按越标前一位计算总数
local xx = {}
xx[1] = 2
xx[2] = 3
print(#xx)
local xx = {}
xx[1] = 2
xx[8] = 3
print(#xx)
--字符串
local x = "aaaaa"
local x = ’aaaaa‘
local x = [[
一组模板数据
]]
--字符串连接 ..
local c = x..b
--模块与包
--定义a.lua文件
a = {}
a.constant = "常量"
a.func1 = function()
print("a模块 1方法")
end
a.func2 = function()
print("a模块 2方法")
end
return a
--定义b.lua文件
--require("a")
require("a")
a.func1()
--local m = require("a")
m.func1()
--lua加载c库
local path = "/usr/local/lua/lib/libluasocket.so"
-- 或者 path = "C:\\windows\\luasocket.dll",这是 Window 平台下
local f = assert(loadlib(path, "luaopen_socket"))
f() -- 真正打开库
--协同程序
function foo (a)
print("foo 函数输出", a)
return coroutine.yield(2 * a) -- 返回 2*a 的值
end
co = coroutine.create(function (a , b)
print("第一次协同程序执行输出", a, b) -- co-body 1 10
local r = foo(a + 1)
print("第二次协同程序执行输出", r)
local r, s = coroutine.yield(a + b, a - b) -- a,b的值为第一次调用协同程序时传入
print("第三次协同程序执行输出", r, s)
return b, "结束协同程序" -- b的值为第二次调用协同程序时传入
end)
print("main", coroutine.resume(co, 1, 10)) -- true, 4
print("--分割线----")
print("main", coroutine.resume(co, "r")) -- true 11 -9
print("---分割线---")
print("main", coroutine.resume(co, "x", "y")) -- true 10 end
print("---分割线---")
print("main", coroutine.resume(co, "x", "y")) -- cannot resume dead coroutine
print("---分割线---")
--[[
第一次运行之后,挂起yield
第二运行,先执行上次的yield输出,再执行本次调用
第三次运行,执行上一次yield输出,再执行本次
结束协同程序
第四次就提示dead了
]]
--文件操作,基于io类
--打开
file = io.open("文件名","打开方式") --r w a r+ w+ a+ b
--读取
io.input(file)
io.read()
--写入
io.output(file)
io.write("hhhhh")
--关闭
io.close(file)
--面向对象
A = {t=0}
A.func1 = function()
print(A.t)
end
--继承
B = {area=0}
--基础类
B:new =function(o,p2)
o = o or {}
setmetatable(o, self)
self.__index = self
side = side or 0
self.area = side*side;
return o
end
-- 基础类方法 printArea
function B:printArea()
print("面积为 ",self.area)
end
-- 创建对象
myshape = Shape:new(nil,10)
myshape:printArea()
Square = Shape:new()
-- 派生类方法 new
function Square:new (o,side)
o = o or Shape:new(o,side)
setmetatable(o, self)
self.__index = self
return o
end
-- 派生类方法 printArea
function Square:printArea ()
print("正方形面积为 ",self.area)
end
-- 创建对象
mysquare = Square:new(nil,10)
mysquare:printArea()
Rectangle = Shape:new()
-- 派生类方法 new
function Rectangle:new (o,length,breadth)
o = o or Shape:new(o)
setmetatable(o, self)
self.__index = self
self.area = length * breadth
return o
end
-- 派生类方法 printArea
function Rectangle:printArea ()
print("矩形面积为 ",self.area)
end
-- 创建对象
myrectangle = Rectangle:new(nil,10,20)
myrectangle:printArea()
总结
如果你有用到openresty作一个补丁包开发,建议使用lua脚本方式,随然c也可以实现...
相关推荐
- 【推荐】一款开源免费、美观实用的后台管理系统模版
-
如果您对源码&技术感兴趣,请点赞+收藏+转发+关注,大家的支持是我分享最大的动力!!!项目介绍...
- Android架构组件-App架构指南,你还不收藏嘛
-
本指南适用于那些已经拥有开发Android应用基础知识的开发人员,现在想了解能够开发出更加健壮、优质的应用程序架构。首先需要说明的是:AndroidArchitectureComponents翻...
- 高德地图经纬度坐标批量拾取(高德地图批量查询经纬度)
-
使用方法在桌面上新建一个index.txt文件,把下面的代码复制进去保存,再把文件名改成index.html保存,双击运行打开即可...
- flutter系列之:UI layout简介(flutter ui设计)
-
简介对于一个前端框架来说,除了各个组件之外,最重要的就是将这些组件进行连接的布局了。布局的英文名叫做layout,就是用来描述如何将组件进行摆放的一个约束。...
- Android开发基础入门(一):UI与基础控件
-
Android基础入门前言:...
- iOS的布局体系-流式布局MyFlowLayout
-
iOS布局体系的概览在我的CSDN博客中的几篇文章分别介绍MyLayout布局体系中的视图从一个方向依次排列的线性布局(MyLinearLayout)、视图层叠且停靠于父布局视图某个位置的框架布局(M...
- TDesign企业级开源设计系统越发成熟稳定,支持 Vue3 / 小程序
-
TDesing发展越来越好了,出了好几套组件库,很成熟稳定了,新项目完全可以考虑使用。...
- WinForm实现窗体自适应缩放(winform窗口缩放)
-
众所周知,...
- winform项目——仿QQ即时通讯程序03:搭建登录界面
-
上两篇文章已经对CIM仿QQ即时通讯项目进行了需求分析和数据库设计。winform项目——仿QQ即时通讯程序01:原理及项目分析...
- App自动化测试|原生app元素定位方法
-
元素定位方法介绍及应用Appium方法定位原生app元素...
- 61.C# TableLayoutPanel控件(c# tabcontrol)
-
摘要TableLayoutPanel在网格中排列内容,提供类似于HTML元素的功能。TableLayoutPanel控件允许你将控件放在网格布局中,而无需精确指定每个控件的位置。其单元格...
- 12个python数据处理常用内置函数(python 的内置函数)
-
在python数据分析中,经常需要对字符串进行各种处理,例如拼接字符串、检索字符串等。下面我将对python中常用的内置字符串操作函数进行介绍。1.计算字符串的长度-len()函数str1='我爱py...
- 如何用Python程序将几十个PDF文件合并成一个PDF?其实只要这四步
-
假定你有一个很无聊的任务,需要将几十个PDF文件合并成一个PDF文件。每一个文件都有一个封面作为第一页,但你不希望合并后的文件中重复出现这些封面。即使有许多免费的程序可以合并PDF,很多也只是简单的将...
- Python入门知识点总结,Python三大数据类型、数据结构、控制流
-
Python基础的重要性不言而喻,是每一个入门Python学习者所必备的知识点,作为Python入门,这部分知识点显得很庞杂,内容分支很多,大部分同学在刚刚学习时一头雾水。...
- 一周热门
-
-
C# 13 和 .NET 9 全知道 :13 使用 ASP.NET Core 构建网站 (1)
-
因果推断Matching方式实现代码 因果推断模型
-
面试官:git pull是哪两个指令的组合?
-
git pull命令使用实例 git pull--rebase
-
git 执行pull错误如何撤销 git pull fail
-
git pull 和git fetch 命令分别有什么作用?二者有什么区别?
-
git fetch 和git pull 的异同 git中fetch和pull的区别
-
git pull 之后本地代码被覆盖 解决方案
-
还可以这样玩?Git基本原理及各种骚操作,涨知识了
-
git命令之pull git.pull
-
- 最近发表
- 标签列表
-
- git pull (33)
- git fetch (35)
- mysql insert (35)
- mysql distinct (37)
- concat_ws (36)
- java continue (36)
- jenkins官网 (37)
- mysql 子查询 (37)
- python元组 (33)
- mysql max (33)
- vba instr (33)
- mybatis 分页 (35)
- vba split (37)
- redis watch (34)
- python list sort (37)
- nvarchar2 (34)
- mysql not null (36)
- hmset (35)
- python telnet (35)
- python readlines() 方法 (36)
- munmap (35)
- docker network create (35)
- redis 集合 (37)
- python sftp (37)
- setpriority (34)