
IT-PHP
xinwang
这个作者很懒,什么都没留下…
展开
-
PHP 上传文件大小的设置
为了上传下载,请修改一下php.ini文件,以下的参数。max_execution_time = 0post_max_size = 150Mupload_max_filesize = 100M===================================================================1.首先修改执行上传文件限制原创 2013-03-06 18:12:15 · 609 阅读 · 0 评论 -
PHP时间操作小结
//PHP获得当前日期的前一天和后一天echo date('Y-m-d',time()-86400);echo date('Y-m-d',time()+86400);//2011-07-09 2011-07-11 //-------------------------------------- 分割线 ------------------------------------转载 2013-02-26 14:40:02 · 395 阅读 · 0 评论 -
php中时间型转化为int型
使用strtotime命令,可以实现这个功能。例子如下:$dateday = “2013-02-27 12:23:15”$intdate = strtotime($dateday);echo $intdate;结果就是:1361967795原创 2013-02-27 17:44:19 · 4678 阅读 · 0 评论 -
PHP中如何连接Mysql以及读取数据
// open the connection $conn = mysql_connect(host名, 用户名, 密码); // pick the database to use mysql_query("SET NAMES UTF8"); mysql_select_db(数据库名,$conn); // create the SQL st原创 2013-02-27 17:48:27 · 461 阅读 · 0 评论 -
Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 62 bytes) in
把Joomla的网站从外面的云平台上download下来后在本地的环境上搭建起来。但是一启动主页就出现如下的错误提示:Fatal error: Allowed memory size of 12582912 bytes exhausted (tried to allocate 62 bytes) inxxx\libraries\joomla\language\language.ph原创 2014-03-05 15:02:43 · 1972 阅读 · 0 评论