欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

字符串压缩程序,将字符串中连续出现的重复字母进行压缩,并输出压缩后的字符串。

程序员文章站 2022-05-12 21:23:22
...
php代码
<?php
/**
 * 字符串,重复值压缩
 * @param string $str	字符串
 * @param string $code_type encode|decode
 * @return string|mixed
 */
function str_compress($str, $code_type='encode') {
	
	$code_type = strtolower(trim($code_type));
	if ('encode' == $code_type || $code_type) {
		$res = preg_replace_callback('#(.)(\1+)#is', function($match){
			return $match [1] . '[' . strlen($match[0]) . ']';
		}, $str);
	} else {
		$res = preg_replace_callback('#(.)\[(\d+)\]#is', function($match){
			return str_repeat($match [1], $match [2]);
		}, $str);
	}
	
	return $res;
}

// 测试 -----------------
$old_str = $str = 'aavaabbcce';
echo $old_str;
echo "";
$str = str_compress($str);
echo $str;
echo "";
$str = str_compress($str, 0);
echo $str;
echo "";
if ($str == $old_str) {
	echo 1;
} else {
	echo 0;
}