BBCode::Internal_CollectTextReverse( $array, $start, $end )
Description
Source
File: bp-forums/admin/parser.php
1747 1748 1749 1750 1751 1752 1753 1754 | function Internal_CollectTextReverse( $array , $start = 0, $end = 0) { ob_start(); for ( $start = intval ( $start ); $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.