1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168:
<?php
namespace VSP\Core\Traits;
defined( 'ABSPATH' ) || exit;
trait String_Helper {
protected static $mb_enc = 'UTF-8';
public static function str_starts_with( $haystack, $needle ) {
if ( static::multibyte_loaded() ) {
if ( '' === $needle ) {
return true;
}
return 0 === mb_strpos( $haystack, $needle, 0, self::$mb_enc );
} else {
$needle = self::str_to_ascii( $needle );
if ( '' === $needle ) {
return true;
}
return 0 === strpos( self::str_to_ascii( $haystack ), self::str_to_ascii( $needle ) );
}
}
public static function str_to_ascii( $string ) {
$string = filter_var( $string, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW );
return filter_var( $string, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH );
}
public static function str_ends_with( $haystack, $needle ) {
if ( '' === $needle ) {
return true;
}
if ( self::multibyte_loaded() ) {
return mb_substr( $haystack, -mb_strlen( $needle, self::$mb_enc ), null, self::$mb_enc ) === $needle;
} else {
$haystack = self::str_to_ascii( $haystack );
$needle = self::str_to_ascii( $needle );
return substr( $haystack, -strlen( $needle ) ) === $needle;
}
}
public static function str_exists( $haystack, $needle ) {
if ( self::multibyte_loaded() ) {
if ( '' === $needle ) {
return false;
}
return false !== mb_strpos( $haystack, $needle, 0, self::$mb_enc );
} else {
$needle = self::str_to_ascii( $needle );
if ( '' === $needle ) {
return false;
}
return false !== strpos( self::str_to_ascii( $haystack ), self::str_to_ascii( $needle ) );
}
}
public static function str_truncate( $string, $length, $omission = '...' ) {
if ( self::multibyte_loaded() ) {
if ( mb_strlen( $string, self::$mb_enc ) <= $length ) {
return $string;
}
$length -= mb_strlen( $omission, self::$mb_enc );
return mb_substr( $string, 0, $length, self::$mb_enc ) . $omission;
} else {
$string = self::str_to_ascii( $string );
if ( strlen( $string ) <= $length ) {
return $string;
}
$length -= strlen( $omission );
return substr( $string, 0, $length ) . $omission;
}
}
public static function to_human_bytes( $bytes, $precision = 2 ) {
$kilobyte = 1024;
$megabyte = $kilobyte * 1024;
$gigabyte = $megabyte * 1024;
$terabyte = $gigabyte * 1024;
if ( ( $bytes >= 0 ) && ( $bytes < $kilobyte ) ) {
return $bytes . ' B';
} elseif ( ( $bytes >= $kilobyte ) && ( $bytes < $megabyte ) ) {
return round( $bytes / $kilobyte, $precision ) . ' KB';
} elseif ( ( $bytes >= $megabyte ) && ( $bytes < $gigabyte ) ) {
return round( $bytes / $megabyte, $precision ) . ' MB';
} elseif ( ( $bytes >= $gigabyte ) && ( $bytes < $terabyte ) ) {
return round( $bytes / $gigabyte, $precision ) . ' GB';
} elseif ( $bytes >= $terabyte ) {
return round( $bytes / $terabyte, $precision ) . ' TB';
} else {
return $bytes . ' B';
}
}
}