Warning: Invalid argument supplied for foreach() in /home/jihswbiz/public_html/t6.gwilt.org/refDox.php on line 212
Docs-is_HTMLBreak

 

ReLoad

Keys


Functions

arraybrowsercolorcookiedatetimeDBdebugdeviceDSTequiverrorflagsfontformatgeo
holidayhtmlisjsonmathparsePHPprintsearchsortstringtabletexttracetype
VOTDweatherxml

Function  is_HTMLBreak   Lines 1364-1385 (21 lines)Added: 2021-02-21 file  utils.php   Last mod: Fri 2021-05-14 21:45:07

function is_HTMLBreak $s$i=)
        {
#-k     parse string is
#-      is the set of chars at $s[$i] a <BR>?
#-p     $s      - req   - String to search
#-p     #i      - opt   - Offest (default 0)
#-p             - ret   -  0 = it's not a break char
#-p                     - >0 = length of the break string
#-d     2/21/21 Added

        
$x 0;

        
$str substr $s$i );
        
$px parse $str );
        if      ((
$px[0]['v'] == "<") &&
                (
shift($px[1]['v']) == "BR") &&
                        ((
$px[2]['v'] == ">") ||
                        ((
$px[2]['v'] == "/") && ($px[3]['v'] == ">"))))
                        
$x strpos$s">"$i);
        return 
$x;
        }

?>