2015-8-25 15:32 Tuesday  

站点静态文件放到了另外一个域名下(方便cdn)

站点的域名为 www.phpec.org,而静态文件的域名为 static.phpec.org。

现在问题来了,

页面中加载css文件:<link rel="stylesheet" href="http://static.phpec.org/css/font.css" />

此css中调用了外部字体如下:

@font-face {
  f...

阅读全文>>

2014-11-3 13:24 Monday  
在没有做git操作的情况下,cpu占用率高,设置里面,图标覆盖,状态缓存设为无就好.

阅读全文>>

2014-6-20 16:14 Friday  
2014-6-18 16:08 Wednesday  

ie下面,会出现window.close()的时候出现询问窗口,消除它的方法为:

ie6及以下

window.opener = null;

window.close();

ie7及以上

window.opener = null;

window.open("","_self");

window.close();

其他浏览器支持 window.opener.dom_id.src的写法,但是ie不支持,解决的办...

阅读全文>>

2014-6-10 15:25 Tuesday  

1. 只按日期排序,忽略年份
> select date, description from table_name order by month(date),dayofmonth(date);
注意:单纯使用dayofyear来排序会导致错误,如2-29与非闰年的3-1日同等级

 

2. 排序点分式IP
> se...

阅读全文>>

2014-5-26 17:51 Monday  

自从HTML5能为我们的新网页带来更高效洁净的代码而得到更多的关注,然而唯一能让IE识别那些新元素(如<article>)的途径是使用HTML5 shiv,感谢remy sharp为我们提供了这个迷你脚本来解决IE支持HTML5的问题。

使用和下载

html5.js必须在页面head元素内调用(因为IE必须在元素解析前知道这个元素,所以这个js文件不能在页面底部调用。)

阅读全文>>

一个程序,在火狐、谷歌下面是正常的,但是在IE下面提示参数无效,经过分析,发现是action里面为空了。

一般来说,我们做表单提交,只要是post,而且是提交到当前页面的话,都是可以忽略action里面的内容的,看来validform没有对为空做处理,改action为完整的地址,就正常了。

阅读全文>>

2014-5-14 9:27 Wednesday  
SELECT * FROM table WHERE id IN(5,3,7,1) ORDER BY FIELD(id,5,3,7,1)
记录按照5,3,7,1的顺序返回
如果没有ORDER BY FIELD将按 1,3,5,6的顺序返回

阅读全文>>

2014-5-7 16:04 Wednesday  

思路,js操作滚动条进行偏移,然后判断是否有偏移

$("#test1").scrollTop(10);	//操作滚动条
$("#test1Result").html($("#test1").scrollTop() > 0 ? "有滚动条!" : "没有滚动条!");	//判断是否有滚动
$("#test1").scrollTop(0);	//滚动条返回顶部

 ...

阅读全文>>

先看一下Discuz!中的js代码

function Html5notification() {
	var h5n = new Object();

	h5n.issupport = function() {
		var is = !!window.webkitNotifications;
		if(is) {
			if(window.webkitNotifications.check...

阅读全文>>

1.eval方法

function strToJson(str){ 
var json = eval('(' + str + ')'); 
return json; 
} 

2.new Function方法

function strToJson(str){ 
var json = (new Function("return " + str))(); 
return json; 
...

阅读全文>>

在MySQL下运行完下面这个建表语句后。 如何从数据字典中,检索出这个表的字段的相关信息?

DROP TABLE IF EXISTS test_table;

CREATE TABLE test_table(
  Test_ID int NOT NULL    AUTO_INCREMENT    PRIMARY &nb...

阅读全文>>

2014-3-31 22:36 Monday  

xml转array

字串

$xml = simplexml_load_string($data);
$array = json_decode(json_encode($xml),TRUE);

文件
$xml = simplexml_load_file($data);
$array= json_decode(json_encode($xml),TRUE);

或者

$array = (array) sim...

阅读全文>>

2014-3-21 12:47 Friday  

PHP5.3.27 的扩展php_opcache.dll

测试平台:Windows 2008 R2 x64 (IIS7.5 FastCGI,Apache2.2.23,Apache2.4.3, Nginx 1.2.9)

包含 Non Thread Safe 和 Thread Safe

如果用的是 FastCGI 请使用 Non Thread Safe 版

php_opcache.dll 的使用方法

php.i...

阅读全文>>

2014-3-18 13:12 Tuesday  
function whois_query($domain) {  
  
    // fix the domain name:  
    $domain = strtolower(trim($domain));  
    $domain = preg_replace('/^http:\/\//i', '', $domain);  
    $domain = preg_...

阅读全文>>