BBCode::Internal_CollectTextReverse( $array, $start, $end )
Description
Source
File: bp-forums/admin/parser.php
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.