/** * 字符串关键字过滤 * @param $find 要查找的值 * @param $replace 替换 find 中的值的值 * @param $subject 被搜索的字符串 * @return bool|mixed 返回替换后的字符串 */ public function keyword_replace($find, $replace, $subject) { if(is_array($find) && !empty($find)){ $subject = str_replace(' ', '',$subject); //过滤空格 foreach($find as $v){ $len = mb_strlen($v, 'utf-8'); $x = ''; for($i = 0; $i < $len; $i++){ $x .= $replace; } $str2 = str_replace($v, $x, $subject); $subject =……
Continue reading
导入sql文件,提示SQL语句过长错误把mysql的配置文件my.ini中的max_allowed_packet = 6M变大可以解决。……
Continue reading
Oracle没有自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。 先建一个测试表了: create table userlogin ( id number(6) not null, name varchar2(30) not null primary key ) tablespace users 第一步:创建SEQUENCE create sequence userlogin_seq increment by 1 start with……
Continue reading
history.go(0); location.reload(); location = location; location.assign(location); document.execCommand('Refresh'); window.navigate(location); location.replace(location); document.URL = location.href;……
Continue reading
if ($("#readme").attr("checked") != "checked") { alert("hello"); return; }……
Continue reading
详细步骤说明: 一、安装PHP 首先确认IIS中启用了CGI功能: IIS 7.5中为了易于PHP程序的安装,增设了PHP Manager模块。只要您简单设定,其它的工作自动到位!下载地址: http://phpma……
Continue reading