摘要:
使用滤镜功能 filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000,endColorstr=#BF000000); 我们需要留意的是StartColorStr和EndColorStr的值,前两位是十六进制的 阅读全文
摘要:
解决方法一 @ob_end_clean(); 解决方法二 if(ob_get_contents()) ob_end_clean(); 阅读全文
摘要:
把文件头改成 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://ww 阅读全文
摘要:
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,textarea,input,p,th,td,tr,table,tbody,thead,tfoot,em,strong,span {padding:0;margin:0;} table {border-collapse:collapse;border-spacing:0;width: 100%;... 阅读全文
摘要:
比如我想把/var/www/html下的文件全部改成664,文件夹改成775,怎么做呢 方法一: 先把所有文件及文件夹改成664,然后把所有文件夹改成775 root@iZ25bq9kj7yZ:/ cd /var/www/html root@iZ25bq9kj7yZ:/var/www/html ch 阅读全文
摘要:
以NULL做where条件过滤时应该写 IS NULL;SELECT * FROM pet WHERE death IS NULL; SELECT * FROM pet WHERE death IS NOT NULL; 注意别加引号。 阅读全文
摘要:
求和命令 mysql> select SUM(price) from order where create_time>'2016-03-12';+------------+| SUM(price) |+------------+| 37.40 |+------------+1 row in set 阅读全文
摘要:
今天做微信支付开发,微信服务器回调的时候,会发送XML数据到我的服务器,用以往的POST,GET是获取不到的 百度了一下,应该是 $file_in = file_get_contents("php://input"); //接收post数据$xml = simplexml_load_string($ 阅读全文
摘要:
$string = "67. No one knows . 没有人知道。"; $s = str_replace("。", ".", $string); $s = str_replace(".", ".", $s); $s = str_replace("’", "'", $s); $s = str_r 阅读全文
摘要:
$(window).scroll(function(){ var _scrolltop = $('body').scrollTop();if(_scrolltop+_winHeight>_docHeight){ onloadMoreTap(... 阅读全文