This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Invision::to_char( $input )
Description
Source
File: bp-forums/admin/converters/Invision.php
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | private function to_char( $input ) { $output = "" ; for ( $i = 0; $i < strlen ( $input ); $i ++ ) { $j = ord( $input { $i } ); if ( ( $j >= 65 && $j <= 90 ) || ( $j >= 97 && $j <= 122 ) || ( $j >= 48 && $j <= 57 ) ) { $output .= $input { $i }; } else { $output .= "&#" . ord( $input { $i } ) . ";" ; } } 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.