Keys →
Functions ↓
function is_HTMLBreak ( $s, $i=0 ) {#-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; }?>