摘要:参考URL https://docs.moodle.org/29/en/Installing_MSSQL_for_PHP#Using_FreeTDS_on_Debian_Lenny第一步,下载相应的dllPHP versionThread SafeFreeTDS versionDownload UR...
阅读全文
随笔分类 - PHP
摘要:mysql->getarr("select * from {$this->pre}user $where order by uid desc"); * $fields=array('username','money','regtime'); * $fields_array = a...
阅读全文
摘要:/** * 检测访问的ip是否为规定的允许的ip * Enter description here ... */function check_ip(){ $ALLOWED_IP=array('192.168.2.*','127.0.0.1','192.168.2.49'); $IP=ge...
阅读全文
摘要://$return=getApiResult($url);// if ($return==200){// //.....// }function getApiResult($url){ if(function_exists('file_get_contents')){...
阅读全文
摘要:* @function send mail* @package lazypeople*/function send_mail_lazypeople($to, $subject = 'Your register infomation', $body) { $loc_host = "SAE"; ...
阅读全文
摘要:运行环境:PHPSTORM版本 : 8.0.1PHP版本 : 5.6.2xdebug版本:php_xdebug-2.2.5-5.6-vc11-x86_64.dllps : php版本和xdebug版本一定要相对应1. PHP安装xdebug扩展php.ini的配置,下面的配置仅供参考,路径要换成自己...
阅读全文
摘要:一、按照键值从低到高排序,并赋予新的键名1 函数:sort( array &array[, int sort_flags])2 参数: (1)&array : 要排序的一维数组, 例如array('a', 'b', 'c')或array(0=>'a', 1=>'b', 2=>'c...
阅读全文
摘要:$a = 100; switch ($a) { case 100: echo '满分'; break; case $a >=60: echo '...
阅读全文
摘要:<?php error_reporting(E_ALL); ini_set('display_errors','1'); //批量加密码当前目录 $dirnow = getcwd(); $dirnowfile = scandir($dirnow,1); f...
阅读全文