From b45e6d51148bf9100d302713d3f8e6885fd072a3 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Mon, 18 Apr 2011 04:29:30 -0400 Subject: [PATCH] add: _REQUEST_cut() --- misc.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/misc.php b/misc.php index 1045d45..cdaf2a1 100644 --- a/misc.php +++ b/misc.php @@ -44,6 +44,16 @@ function ordinalize($i) { return $i . ordinal_suffix($i); } +# remove the $key from $_REQUEST and return it's value (or null if it's not there) +function _REQUEST_cut($key) { + if(!isset($_REQUEST[$key])) { + return null; + } + $ret = $_REQUEST[$key]; + unset($_REQUEST[$key]); + return $ret; +} + # returns an array containing just the elements of $pipes that are readable (without blocking) # timeout 0 means don't wait, timeout NULL means wait indefinitely function readable_sockets($pipes, $timeout = 0){ -- 1.7.10.4