php代码
XYCMS(PHP版)企业建站系统是XYCMS工作室推出的一套通用的企业建站软件系统。XYCMS企业建站系统是专业从事企业网站制作与设计服务,已有四年工作经验,网站系统方便、简洁、容易上手。所设计的版本分为动态版和静态版,比起市场上同类系统,性价比还是很高的,在企业网站建设行业里拥有丰富的经验,并在业界取得好评。 更新日志:1.后台简单特殊字符替换XYCMS(PHP版) 软件的安装:1. 上传 u
0
<?php
/**
* Hsubstr是一个截取中文字符串类
* @author pan <panxuzhengxuxin@gmail.com>
* @package
* @since 1.0
*/
class Hsubstr
{
function __construct($str,$start,$len)
{
$this->str=$str;
$this->start=$start;
$this->len=$len;
}
/**
* 截取的中文字符串,返回截到的字符串
* @return $temstr截取的中文字符串
*/
public function getStr()
{
//$endlen=$this->start+$this->len;
for ($i=0; $i <$this->len ; $i++)
{
if(ord(substr($this->str,$i,1))>0xa0)
{
$temstr.=substr($this->str, $i,2);
$i++;
}
else
{
$temstr.=substr($this->str, $i,1);
}
}
return $temstr;
}
}
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号