Lamp架构 PHP 5.3.29#查看php是否有mbstring模块php -m | grep mbstringyum install php-mbstring -yfind / -name mbstring.sovim php.ini extension = "/usr/lib64/php.....
分类:
Web程序 时间:
2014-09-16 12:31:50
阅读次数:
197
在做PHP开发的时候,由于我国的语言环境问题,所以我们常常需要对中文进行处理。在PHP中,我们都知道有专门的mb_substr和mb_strlen函数,可以对中文进行截取和计算长度,但是,由于这些函数并非PHP的核心函数,所以,它们常常有可能没有开启。当然,如果是用的自己的服务器,则只要在php.i...
分类:
Web程序 时间:
2014-09-15 22:41:09
阅读次数:
347
");//返回第二个参数字符串在第一个字符串里出现的次数$int=substr_count("abcdeabcdeablkabd","ab");//返回第二个字符串在第一个字符串第一次出现的位置,第一个字符位置算0$int=strpos("asagaab","ab");//返回第二个字符串在第一个字...
分类:
Web程序 时间:
2014-09-14 17:59:37
阅读次数:
214
C++中处理split的函数,首先要了解几个函数C++中string自己带的find_first_of 或者find_first_not_offind_last_of 或者find_last_not_of函数原型为:可以用来超找字符串,char,char *三种类型string (1)size_t ...
分类:
编程语言 时间:
2014-09-14 14:03:47
阅读次数:
346
function msubstr($str, $start=0, $length, $charset="utf-8", $suffix=true) { ? ? ? ? if(function_exists("mb_substr")) ? ? ? ? ? ? $slice = mb_substr($str, $start, $length, $charset); ? ?...
分类:
其他好文 时间:
2014-09-13 10:47:55
阅读次数:
190
PHP substr()函数可以分割文字,但要分割的文字如果包括中文字符往往会遇到问题,这时可以用mb_substr()/mb_strcut这个函数,mb_substr() /mb_strcut的用法与substr()相似,只是在mb_substr()/mb_st...
分类:
Web程序 时间:
2014-09-12 23:35:34
阅读次数:
404
SELECT INSTR('AAAC', 'AAC') FROM DUAL; --2SELECT SUBSTR('ABC', 2, 1) FROM DUAL; --BSELECT 'AA' || CHR(ASCII('B') + 1) FROM DUAL; -- AACSELECT * FROM V...
分类:
数据库 时间:
2014-09-12 21:59:14
阅读次数:
427
function uuid() { ? ? ? ? $charid = md5(uniqid(mt_rand(), true)); ? ? ? ? $hyphen = chr(45);// "-" ? ? ? ? $uuid = chr(123)// "{" ? ? ? ? ? ? ? ?.substr($charid, 0, 8).$hyphen ...
分类:
其他好文 时间:
2014-09-12 17:29:44
阅读次数:
159
1.substrsubstr(start,length)表示从start位置开始,截取length长度的字符串。varsrc="images/off_1.png";alert(src.substr(7,3));弹出值为:off2.substringsubstring(start,end)表示从sta...
分类:
其他好文 时间:
2014-09-11 22:22:12
阅读次数:
223
//获取文件名后缀char* fileName = "pwave.sgy";std::string file_str = fileName;int pos = file_str.rfind('.') + 1;std::string temp = file_str.substr( pos );
分类:
其他好文 时间:
2014-09-11 17:03:42
阅读次数:
181