Skip to content

Instantly share code, notes, and snippets.

@denisdemaisbr
Created October 13, 2023 03:04
Show Gist options
  • Save denisdemaisbr/ef376955b606c386ef47b8ef2e2a869e to your computer and use it in GitHub Desktop.
Save denisdemaisbr/ef376955b606c386ef47b8ef2e2a869e to your computer and use it in GitHub Desktop.
in_array() php in lua
function in_array(value, array)
for _, v in ipairs(array) do
if v == value then
return true
end
end
return false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment