您的当前位置:首页 > 建站学院 > 
  • 字符串截取、长度、类型判断等

    后端开发2023年05月06日

    字符串截取:if ($keyword_str!=''){ echo substr($keyword_str,0,-1);//去掉最后一位 }判断指定字符串是否存在:if (strpos($dh_url,"/jingyan")!==false){ $class_2='class=&quo...

  • 字符串与数组转换,循环输出

    后端开发2023年05月06日

    以数组形式提交的表单,获取数组元素并组合成字符串if ($post!='') {     $post_str = ','.implode(",",$post).',';//两端带半角逗号,形式闭环字符串 }将字符...

  • 身份证取生日和性别

    后端开发2023年05月06日

    通过身份证获取出生日期:$birthday=substr($sfz,6,4)."-".substr($sfz,10,2)."-".substr($sfz,12,2);通过身份证获取性别:if (substr($sfz,16,1) % 2==0){    &nb...

  • PHP页面及字符编码转换

    后端开发2023年05月06日

    PHP字符编码转换:iconv('gbk','utf-8',$message);页面编码header("Content-Type: text/html;charset=GB2312")...

  • base64_decode与base64_encode加密解密函数

    后端开发2023年05月06日

    $str='d3d3LmpiNTEubmV0IOiEmuacrOS5i+Wutg==';     //定义字符串  echo base64_decode($str); //输出解码后的内容 $str='www.jb51.net 脚本之家'...

  • 日期、时间、时间戳

    后端开发2023年05月05日

    获取当前日期:<? $indate=date("Y-m-d H:i:s") ;?>获取当前时间戳:<?=time()?>日期格式化:<?=date("Y-m-d H:i:s",strtotime("2016-12-12 12:12...

  • input限制只能输入标准数字(整数和小数)

    前端开发2023年05月05日

    <input name="bili" type="text" id="bili" placeholder="结业课时标准比例" onkeyup="this.value=this.value.replace(/[^\...

  • 自定义滚动条样式

    前端开发2023年05月05日

    <style> #flpm_box_danwei::-webkit-scrollbar,#right_box::-webkit-scrollbar { /*滚动条整体样式*/ width : 5px;  /*高宽分别对应横竖滚动条的尺寸*/ height: 1px; } #flpm_bo...

  • CSS让DIV元素闪烁、闪动

    前端开发2023年05月05日

    @-webkit-keyframes twinkling{/*透明度由0到1*/ 0%{ opacity:0;/*透明度为0*/ } 100%{ opacity:1;/*透明度为1*/ } } .shanshuo{     -webkit-animation: twinkling 1s&n...

  • Chrome浏览器触屏点击阴影取消

    前端开发2023年05月05日

    #anniu_index { position:absolute; width:200px; height:200px; padding-top:5px; text-align:center; display:block; z-index:1; right:5px; top:5px; cursor:pointer; outline:none; -w...