摘要: php优点1. 跨平台,性能优越,跟Linux/Unix结合别跟Windows结合性能强45%,并且和很多免费的平台结合非常省钱,比如LAMP(Linux /Apache/Mysql/PHP)或者FAMP(FreeBSD/Apache/Mysql/PHP)结合,或者数据应用够大可以考虑换 Postg... 阅读全文
posted @ 2015-06-09 20:35 小金乌会发光-Z&M 阅读(904) 评论(0) 推荐(0) 编辑
摘要: PHP经典面试题:(不断跟进补充中。。。)1、用PHP打印出前一天的时间格式是2009-02-1022:21:21(2分)echodate('Y-m-dH:i:s',strtotime('-1day'));或者$yesterday=time()-(24*60*60);echo'today:'.dat... 阅读全文
posted @ 2015-06-09 20:11 小金乌会发光-Z&M 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://blog.csdn.net/huang_xw/article/details/8760403 C++11中引入的auto主要有两种用途:自动类型推断和返回值占位。auto在C++98中的标识临时变量的语义,由于使用极少且多余,在C++11中已被删除。前后两个标准的auto,完... 阅读全文
posted @ 2015-06-09 13:40 小金乌会发光-Z&M 阅读(195) 评论(0) 推荐(0) 编辑
摘要: Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega... 阅读全文
posted @ 2015-06-09 13:34 小金乌会发光-Z&M 阅读(206) 评论(0) 推荐(0) 编辑