单例模式讲的不错,不过mysql_connecti已经废弃了
推荐使用$db=new mysqli('localhost','root','password,'database_name');
推荐使用$db=new mysqli('localhost','root','password,'database_name');
2016-10-09
作为安卓狗来说,这节课太棒啦,因为做毕设所有自学php做后台关于接口这块的问题,这门课完美解决,wonderful!
2016-10-05
其实我觉得Json的可读性并不比XML差,因为可以格式化呀 http://tool.oschina.net/codeformat/json
2016-09-30
把$type = isset($_GET['format']) ? $_GET['format'] : self::JSON;
改为
if(!empty($_GET['format'])){
$type=$_GET['format'];
} 修复get不到时后台转化失效问题,
改为
if(!empty($_GET['format'])){
$type=$_GET['format'];
} 修复get不到时后台转化失效问题,
2016-09-28