Guest User

Untitled

a guest
Jun 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ##=============================##
  2. ##=============================##
  3. ## Function between()
  4. ## Author: Tony Legrone
  5. ## v.1.0.1
  6. ##=============================##
  7. ##=============================##
  8.  
  9. function between($val, $low, $high) {
  10. return ($val >= $low && $val <= $high);
  11. }
Add Comment
Please, Sign In to add comment