最近在学习java过程中,发现一些编码的问题,如:有一个字符串如 "a中国b";这个字符串占用多少字节呢?
gbk:6字节
gb2312:6字节
utf-8:8字节
有的人可能会说为什么不是:
gbk:8字节
gb2312:8字节
utf-8:12字节
这么多字节呢?
因为半角下...
8年前 (2017-03-30) 3225℃ 0评论
9喜欢
package com.lampnick.archiver;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java....
8年前 (2017-03-30) 1730℃ 0评论
0喜欢
yii2使用DbSession的时候,如果两个接口同时请求了 Yii::$app->user->logout()【会删除session】和Yii::$app->user->isGuest【或者 Yii::$app->user->login(...
8年前 (2017-03-30) 2786℃ 0评论
2喜欢
使用ctrl+d或者ctrl+del就行了,按del或者backspace是不行的。
转载请注明:MitNick » rational rose 2007(v7)怎么删除时序图(logical view-sequence diagram)中的元素...
8年前 (2017-03-28) 2348℃ 0评论
1喜欢
在MySQL中执行下列命令,DELETE FROM xxx WHERE pid IN (SELECT id FROM xxx WHERE id = pid);
出现[Err] 1093 - You can't specify target table 'xxx' for upda...
8年前 (2017-03-20) 3452℃ 0评论
0喜欢
首页准备两个php文件
1.testFakeRerer.php//对http_referer进行伪造请求
2.checkReferer.php//输出请求页面的referer
两个文件的内容分别为:
testFakeRerer.php
<?php
try {
$h...
8年前 (2017-03-15) 1998℃ 0评论
0喜欢
在linux系统下使用zipArchive压缩文件,采用ZipArchive::OVERWRITE方式,发现打开失败,打印返回的错误码为:9,查看官方文档 错误码9代表没有这个文件,
$zip = new \ZipArchive();
$res = $zip->ope...
8年前 (2017-02-24) 4764℃ 0评论
8喜欢
file_put_contents
(PHP 5, PHP 7)
file_put_contents — 将一个字符串写入文件
说明 ¶
int file_put_contents ( string $filename , mixed $data [, int $flags...
8年前 (2017-02-23) 3830℃ 0评论
8喜欢
is_file和file_exists都可以用来判断一个文件是否存在,file_exists还能判断一个目录是否存在,另外is_dir也能判断目录是否存在。
is_file和file_exists相比,文件存在时,is_file比file_exists要快一些。不存在时,两者效率...
8年前 (2017-02-20) 3151℃ 0评论
0喜欢
strcasecmp() 定义和用法
strcasecmp() 函数比较两个字符串。
提示:strcasecmp() 函数是二进制安全的,且不区分大小写。
提示:该函数与 strncasecmp() 函数类似,不同的是,通过 strncasecmp() 您可以指定每个字符串用于比...
8年前 (2017-02-17) 2774℃ 0评论
2喜欢