Home > php教程 > php手册 > 刪掉三字元文字

刪掉三字元文字

WBOY
Release: 2016-06-06 19:32:28
Original
1351 people have browsed it

刪掉三字元文字 无 源码与演示: 源码出处演示出处 ?php header("content-Type: text/html; charset=utf-8"); //語言強制$str="asd中文ㄍㄍㄍ";$len = strlen($str);$cc=0;for($i = 0; $i $len; $i++){$char = substr($str, $i, 1); //函数返回字符串的一部分

刪掉三字元文字

源码与演示:源码出处 演示出处

<?php 
header("content-Type: text/html; charset=utf-8"); //語言強制
$str="asd中文ㄍㄍㄍ";
$len = strlen($str);
$cc=0;
for($i = 0; $i < $len; $i++){
	$char = substr($str, $i, 1); //函数返回字符串的一部分
	if(ord($char) > 127){//非字母
		$arr[$cc][0] = substr($str, $i, 3); //前3字元 函数返回字符串的一部分
		$arr[$cc][1] = "3";
		$i=$i+2;
	}else{
		$arr[$cc][0] = substr($str, $i, 1); //前1字元 函数返回字符串的一部分
		$arr[$cc][1] = "1";
	}
	$cc=$cc+1;
}
echo "<pre class="brush:php;toolbar:false">".print_r($arr)."
Copy after login
Copy after login
"; ?>
<?php 
header("content-Type: text/html; charset=utf-8"); //語言強制
$str="asd中文ㄍㄍㄍ";
$len = strlen($str);
$cc=0;
for($i = 0; $i < $len; $i++){
	$char = substr($str, $i, 1); //函数返回字符串的一部分
	if(ord($char) > 127){//非字母
		$arr[$cc][0] = substr($str, $i, 3); //前3字元 函数返回字符串的一部分
		$arr[$cc][1] = "3";
		$i=$i+2;
	}else{
		$arr[$cc][0] = substr($str, $i, 1); //前1字元 函数返回字符串的一部分
		$arr[$cc][1] = "1";
	}
	$cc=$cc+1;
}
echo "<pre class="brush:php;toolbar:false">".print_r($arr)."
Copy after login
Copy after login
"; ?>
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template