?
Current Path : /opt/wp/plugins/wpforms-lite/src/Helpers/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : //opt/wp/plugins/wpforms-lite/src/Helpers/File.php |
<?php namespace WPForms\Helpers; /** * Class File. * * @since 1.6.5 */ class File { /** * Remove UTF-8 BOM signature if it presents. * * @since 1.6.5 * * @param string $string String to process. * * @return string */ public static function remove_utf8_bom( $string ) { if ( strpos( bin2hex( $string ), 'efbbbf' ) === 0 ) { $string = substr( $string, 3 ); } return $string; } }