后端开发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...
后端开发2023年05月06日
PHP字符编码转换:iconv('gbk','utf-8',$message);页面编码header("Content-Type: text/html;charset=GB2312")...
后端开发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...
前端开发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...
前端开发2023年05月05日
@-webkit-keyframes twinkling{/*透明度由0到1*/ 0%{ opacity:0;/*透明度为0*/ } 100%{ opacity:1;/*透明度为1*/ } } .shanshuo{ -webkit-animation: twinkling 1s&n...
前端开发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...