Linux环境PHP5.5以上连接SqlServer2008【全网最经典无错版】
phpthree 5个月前 (07-16) 646浏览
https://blog.csdn.net/21aspnet/article/details/47451253 转载请注明:phph5博客 » Linux环境PHP5.5以上连接SqlServer2008【全网最经典无错版】...
phpthree 5个月前 (07-16) 646浏览
https://blog.csdn.net/21aspnet/article/details/47451253 转载请注明:phph5博客 » Linux环境PHP5.5以上连接SqlServer2008【全网最经典无错版】...
phpthree 1年前 (2018-07-13) 426浏览
1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl...
phpthree 1年前 (2018-07-02) 781浏览
cd /alidata/www/haha/ & /alidata/server/php-5.5.7/bin/php think tui 转载请注明:phph5博客 » thinkphp crontab...
phpthree 1年前 (2018-06-29) 742浏览
加密函数:输入参数字符串,返回机密字符串。 Coding::tiriEncode(String) 解密函数:输入上边函数的加密结果,反解到加密前字符串 Coding::tiriDecode(String) 特点: 1.同一个输入,每次输出都不...
phpthree 1年前 (2018-06-27) 769浏览
新浪提供了长链接转为短链接的API,可以把长链接转为 t.cn/xxx 这种格式的短链接。 API: http://api.t.sina.com.cn/short_url/shorten.json (返回结果是JSON格式) http://ap...
phpthree 2年前 (2018-06-16) 810浏览
https://lvtao.net/ 转载请注明:phph5博客 » 轻量级的PHP数据库框架, 提高开发效率!...
phpthree 2年前 (2018-06-14) 988浏览
在项目开发中需要Thinkphp5读取多个数据库的数据,我的已经成功了在这里介绍一下,只需要简单的几步 database.php是框架默认的数据库配置,里面写数据库1的信息,新建了个database2.php是放置数据库2的信息。 创建完数据库2之...
phpthree 2年前 (2018-04-19) 1118浏览
<?php $memcache = new Memcache; //创建一个memcache对象 $memcache->connect('localhost', 11211) or die ("Could not ...
phpthree 2年前 (2018-03-07) 543浏览
感觉网上的手机号码验证都不是很严格,自已写了一个,目前支持: 移动:134、135、136、137、138、139、150、151、152、157、158、159、182、183、184、187、188、178(4G)、147(上网卡); 联通:13...
phpthree 2年前 (2018-03-04) 1351浏览
最近在用TP的RBAC权限控制,在这里记录学习一下。先来看看相关的概念 一、相关概念 访问控制与RBAC模型 1、访问控制: 通常的多用户系统都会涉及到访问控制,所谓访问控制,是指通过某种方式允许活限制用户访问能力及范围的一种方法...