ReLoad

Keys

cookie
Functions

arraybrowsercolorcookiedatetimeDBdebugdeviceDSTequiverrorflagsfontformatgeo
holidayhtmlisjsonmathparsePHPprintsearchsortstringtabletexttracetype
VOTDweatherxml
detectMobileDevice
eatLocalInfoCookie

Function  between_last   Lines 190-201 (11 lines)Added: 2021-02-11 file  utils.php   Last mod: Fri 2021-05-14 21:45:07

function between_last ($needle$ndl$haystack)
        {
#-k     string  parse
#-      returns the part of $haystack between the last occurance of 2 needles
#-      between_last ('[', ']', 'sin[90]*cos[180]');
#-              will return "180"
#-c     biohazard dot ge at gmail dot com - https://www.php.net/manual/en/function.substr.php
#-d     2/11/21 Added

        
return after_last($needlebefore_last($ndl$haystack));
        };

?>