web
蜗牛2020
这个作者很懒,什么都没留下…
展开
-
HTML中获取select的值的总结
我们无法进步的原因,往往是因为我们总是看起来很努力,但是却没有什么行动效率。$("#selectID option[text=5]").attr("selected", "selected");//这样的获取方式不对正确写法应该是:$("#yyt option:contains('5')").attr("selected", true);关于option的一些写法总结,我找到了一篇很实用基础的文章,原本链接:https://www.cnblogs.com/gengaixue/archive/20转载 2021-08-11 14:57:50 · 5313 阅读 · 0 评论 -
php:产生8位16进制随机数
//产生8位16进制随机数 $rand = mt_rand(0x00000000, 0xffffffff);// make sure we're not over 0xffffff, which shouldn't happen anyway $rand = dechex($rand & 0xffffffff); // add zeroes in front of the generated string //如果有0确保0在首位 $ran原创 2021-07-29 11:38:09 · 671 阅读 · 0 评论 -
jquery和php分别获取当前时间
jquery:function padleft0(obj) { return obj.toString().replace(/^[0-9]{1}$/, "0" + obj); }function gettime(){ var nowtime = new Date(); var year = nowtime.getFullYear(); var month = padleft0(nowtime.getMonth() + 1);转载 2021-07-29 11:36:11 · 76 阅读 · 0 评论 -
thinkphp调用其他控制器的方法,助手函数action();
用法:$a = action(‘admin/user/detail’,[‘id’=>10]);var_dump($a)表示在其他控制器调用user控制器的detail方法,传了一个参数id转载 2021-07-23 16:46:17 · 917 阅读 · 0 评论 -
tonyenc加密源码使用教程
tonyenc加密源码使用教程首先从git下载文件下来https://github.com/lihancong/tonyencgit clone https://github.com/lihancong/tonyenc加密前记得备份!!!因为加密了,原文件全部被加密了。作者已经把解密的方法去掉,所以不可逆的哦,自己要小心文件将它安装在php扩展里面,必须大于php7.0以上这里我系统7.2,如果查看php版本呢?php -v[root@VM_0_7_centos lv57]# php -转载 2021-07-15 10:23:28 · 818 阅读 · 0 评论 -
如何使用php-screw-plus来对php文件进行加密
原文:https://www.cnblogs.com/feixiablog/p/9870193.html1.克隆一份代码git clone https://git.oschina.net/splot/php-screw-plus.git2.执行php的phpize文件/usr/local/php/bin/phpize(1)phpize是干嘛的?phpize是什么东西呢?php官方的说明:http://php.net/manual/en/install.pecl.phpize.phpphpiz转载 2021-07-12 10:24:21 · 427 阅读 · 1 评论 -
php:获取列表中节点之间关系以及只获取末端节点信息(类似无限级分类)
<?php$list= array(array('id' => 1, 'parent_node' => 'ff', 'addr' => '中国'), //根节点array('id' => 2, 'parent_node' =>'中国' , 'addr' => '北京'),array('id' => 3, 'parent_node' => '中国', 'addr' => '山东'),array('id' => 4, 'parent原创 2021-07-02 09:35:33 · 176 阅读 · 0 评论 -
user.ini可能引起PHP网站无法正常访问
这几天迁移手中的一个站点,遇到一个问题,就是网站在新搭建的PHP环境下无法正常打开。网站目录下的静态文件能访问,就是所有PHP文件都无法访问,发挥404找不到页面提示。重新搭建环境都不行,只要把站点一上传上去就无法访问,网上找了很久都没找到解决方案。最后一个偶然操作被我决解了,发现了症结所在,就是网站根目录下的一个user.ini文件。只要把这个文件删除就能够正常访问了,如果删除了还不能访问,就把PHP重启一下即可。打开这个文件里面内容只有一行:open_basedir=/www/wwwroot/uce转载 2021-06-21 15:10:24 · 573 阅读 · 0 评论 -
调用AMap时,如何将高德地图的Logo去除
原文链接:https://blog.csdn.net/weixin_43193667/article/details/84876512<style type="text/css"> .amap-logo{ display: none; opacity:0 !important; } .amap-copyright { opacity:0; } </style>...转载 2021-06-18 16:51:45 · 561 阅读 · 0 评论 -
给button添加背景图片,点击button页面后退.
js<script> function pagebackward(){ window.history.back(); }function pageforward(){ window.history.forward (); }</script>html:<div> <button type="submit" style="background-image:url(img/back.j原创 2020-12-09 21:34:22 · 443 阅读 · 0 评论 -
多个图片从左到右布局
html:<div class="ecr"> <div class="ecr1"> <img src="a1.jpg" ></div> <div class="ecr2"> <img src="a2.jpg"></div> <div class="ecr3"> <img src="a3.jpg"></div> <div class="ecr4"> <im原创 2020-12-09 21:27:26 · 154 阅读 · 0 评论 -
php删除文件前几行
<?php/*删除文件中前两行数据,通过修改循环次数,修改前多少行.*/ $data = ""; $str=""; $handle = fopen("1.txt", 'rw'); for ($i=0; $i<2;$i++) fgets($handle原创 2020-12-09 21:01:15 · 419 阅读 · 1 评论