BBCode::Internal_CollectText( $array, $start )
Description
Source
File: bp-forums/admin/parser.php
1738 1739 1740 1741 1742 1743 1744 1745 | function Internal_CollectText( $array , $start = 0) { ob_start(); for ( $start = intval ( $start ), $end = count ( $array ); $start < $end ; $start ++) print $array [ $start ][BBCODE_STACK_TEXT]; $output = ob_get_contents(); ob_end_clean(); return $output ; } |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.