易忘知识点

易忘知识点

转换布尔值为false的几种情况

Int类型           0     
Float类型         0.0    
String类型        '0'和空字符串''
Bool类型          false   
Array类型         空数组    
Object类型        对象都为true 
Resource类型      都是真,没有假  
Null类型          null   

文件上传必须属性:

    enctype="multipart/form-data"

设置字符集:

    //设置页面字符集 HTML5
    <meta charset="utf-8"/> 
    //设置页面字符集 html4
    <meta http-equiv="Content-type" content="text/html;charset=utf-8"/>
    //html meta标签:  
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

浏览器属性行为: http-equiv

    // 设置浏览器3秒一刷新
    <meta http-equiv="refresh" content="3"/> 
    //设置浏览器3秒跳转新的路径。
    <meta http-equiv="refresh" content="3;url=新的路径"/> 
    //网站关键字
    <meta name="keywords" content="多个关键字之间用逗号隔开"/> 
    //网站的描述
    <meta name="description" content="对网站进行的描述"/>  
    //声明网站的作者
    <meta name=”author” content=”baby熊”>       
    //如果网页中设置base标签 那么在body中所有的连接 都可以写成相对路径,相对于base标签中设置的绝对路径
    <base href=”路径”>
    //引入css外联表
    <link rel="stylesheet" type="text/css" href="theme.css" />

php设置字符集:

    header('content-type:text/html;charset=utf-8');

php常用的header头:

        // ok 正常访问
        header('HTTP/1.1 200 OK');
        //通知浏览器 页面不存在
        header('HTTP/1.1 404 Not Found');
        //设置地址被永久的重定向 301
        header('HTTP/1.1 301 Moved Permanently');
        //跳转到一个新的地址
        header('Location: http://www.ithhc.cn/');
        //延迟转向 也就是隔几秒跳转
        header('Refresh: 10; url=http://www.ithhc.cn/');
        //修改 X-Powered-By信息
        header('X-Powered-By: PHP/6.0.0');
        //文档语言
        header('Content-language: en');
        //设置内容长度
        header('Content-Length: 1234');
        //告诉浏览器最后一次修改时间
        header('Last-Modified: '.gmdate('D, d M Y H:i:s',$time).' GMT');
        //告诉浏览器文档内容没有发生改变
        header('HTTP/1.1 304 Not Modified');
    内容类型:
        //网页编码
        header('Content-Type: text/html; charset=utf-8');
        //纯文本格式
        header('Content-Type: text/plain');
        //JPG、JPEG
        header('Content-Type: image/jpeg');
        // ZIP文件
        header('Content-Type: application/zip');
        // PDF文件
        header('Content-Type: application/pdf');
        // 音频文件
        header('Content-Type: audio/mpeg');
        //css文件
        header('Content-type: text/css');
        //js文件
        header('Content-type: text/javascript');
        //json
        header('Content-type: application/json');
        //pdf
        header('Content-type: application/pdf');
        //xml
        header('Content-type: text/xml');
        //Flash动画
        header('Content-Type: application/x-shockw**e-flash');

    声明一个下载的文件:
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename="ITblog.zip"');
        header('Content-Transfer-Encoding: binary');
        readfile('test.zip');


    对当前文档禁用缓存:
        header('Cache-Control: no-cache, no-store, max-age=0, must-revalidate');
        header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');

    显示一个需要验证的登陆对话框:
        header('HTTP/1.1 401 Unauthorized');
        header('WWW-Authenticate: Basic realm="Top Secret"');

    声明一个需要下载的xls文件:
        header('Content-Disposition: attachment; filename=ithhc.xlsx');
        header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
        header('Content-Length: '.filesize('./test.xls'));
        header('Content-Transfer-Encoding: binary');
        header('Cache-Control: must-revalidate');
        header('Pragma: public');
        readfile('./test.xls');
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值