* @author Alex Makarov * @since 2.0 */ class BaseStringHelper { /** * Returns the number of bytes in the given string. * This method ensures the string is treated as a byte array by using `mb_strlen()`. * @param string $string the string being measured for length * @return integer the number of bytes in the given string. */ public static function byteLen($string) { return mb_strlen($string, '8bit'); } /** * Returns the portion of string specified by the start and length parameters. * This method ensures the string is treated as a byte array by using `mb_substr()`. * @param string $string the input string. Must be one character or longer. * @param integer $start the starting position * @param integer $length the desired portion length * @return string the extracted part of string, or FALSE on failure or an empty string. * @see http://www.php.net/manual/en/function.substr.php */ public static function byteSubstr($string, $start, $length) { return mb_substr($string, $start, $length, '8bit'); } /** * Compares two strings or string arrays, and return their differences. * This is a wrapper of the [phpspec/php-diff](https://packagist.org/packages/phpspec/php-diff) package. * @param string|array $lines1 the first string or string array to be compared. If it is a string, * it will be converted into a string array by breaking at newlines. * @param string|array $lines2 the second string or string array to be compared. If it is a string, * it will be converted into a string array by breaking at newlines. * @param string $format the output format. It must be 'inline', 'unified', 'context', 'side-by-side', or 'array'. * @return string|array the comparison result. An array is returned if `$format` is 'array'. For all other * formats, a string is returned. * @throws InvalidParamException if the format is invalid. */ public static function diff($lines1, $lines2, $format = 'inline') { if (!is_array($lines1)) { $lines1 = explode("\n", $lines1); } if (!is_array($lines2)) { $lines2 = explode("\n", $lines2); } foreach ($lines1 as $i => $line) { $lines1[$i] = rtrim($line, "\r\n"); } foreach ($lines2 as $i => $line) { $lines2[$i] = rtrim($line, "\r\n"); } switch ($format) { case 'inline': $renderer = new \Diff_Renderer_Html_Inline(); break; case 'array': $renderer = new \Diff_Renderer_Html_Array(); break; case 'side-by-side': $renderer = new \Diff_Renderer_Html_SideBySide(); break; case 'context': $renderer = new \Diff_Renderer_Text_Context(); break; case 'unified': $renderer = new \Diff_Renderer_Text_Unified(); break; default: throw new InvalidParamException("Output format must be 'inline', 'side-by-side', 'array', 'context' or 'unified'."); } $diff = new \Diff($lines1, $lines2); return $diff->render($renderer); } }