-
Ubuntu下Nginx+Php-fpm+MySQL+Redis PHP运行环境源代码编译安装指南
本文为大家讲解的是在Ubuntu下Nginx+Php-fpm+MySQL+Redis的 PHP运行环境源代码编译安装指南,感兴趣的同学参考下. 运行环境介绍 php简介 PHP(外文名: Hypertext Preprocessor,中文名:“超文本预处理器”)是一种通用开源脚本语言。语法吸收了C语言、Java和Perl的特点,入门门槛较低,易于学习,使用广泛,主要适用于Web开发领域...
PHP 2014-12-19 23:39:18 -
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 解决方法
本文为大家讲解的是PHP错误Parse error: syntax error, unexpected end of file in test.php on line 解决方法,感兴趣的同学参考下。 今天在写PHP程序的时候总是出现这样的错误:Parse error: syntax error, unexpected end of file in *.php on line *,然后我就根据提示,找到那个文件,然后错误中总是提示最后一行出错,我找到最后一行发现是</html>,晕的,这能有什么错误,找了好久才找到问题所在,拿来分享...
PHP 2014-12-19 17:51:06 -
生成ubuntu自动切换壁纸xml文件的php代码
本文是一个php实现的可以用来生成ubuntu自动切换壁纸xml文件的php代码,感兴趣的同学参考下。 运行代码后在图片目录下会生成yuxing.xml,方便ubuntu自动切换壁纸. <?php /* * 生成ubuntu自动切换壁纸xml文件 */ //图片目录 $dir = '/home/yuxing/background'; $hd = opendir($dir) or die('can not open dir'); $files = array(); while($file = readdir($hd)) { $tem = "$dir/$file"; if (is_file($tem) && in_array(strtolower(substr(strrchr($file,'.'), 1)), array('jpg', 'gif'))) $files[] = $tem; } closedir($hd); u...
PHP 2014-12-19 16:12:05 -
单干的节奏?阿里YunOS要效仿谷歌推自主品牌手机
站长搜索(www.adminso.com):单干的节奏?阿里YunOS要效仿谷歌推自主品牌手机 随着中国手机市场进入最后洗牌期,手机终端厂商与家电企业、互联网企业的合纵连横已成为业界最为关注的话题。而继小米注资美的、酷派与奇虎360成立手机合资公司之后,阿里巴巴是否入股魅族与小米,也成为业界讨论的热点话题...
业界动态 2014-12-19 15:30:07 -
PHP Warning: array_merge() : Argument #1 is not an array in...错误解决方法
本文为大家讲解了php错误PHP Warning: array_merge() : Argument #1 is not an array in....
PHP 2014-12-19 11:39:04 -
php使用mysql_real_escape_string函数转义mysql语句
本文为大家讲解的是php使用mysql_real_escape_string函数转义mysql语句的方法,感兴趣的同学参考下。 如果你需要向数据库,插入形如’你好’,这样包含有单引号或者双引号的字符串怎么办,当然可以使用反斜杠进行转义,但是如果内容太多呢? 你总不可能对每一个这样的特殊字符都人工进行转义,何况你通常处理的都是表单自动提交的内容...
PHP 2014-12-19 11:12:04 -
PHP Error与Logging函数使用说明
本文为大家讲解的是PHP Error与Logging函数使用说明,感兴趣的同学参考下。 PHP Error与Logging 简介 error与logging 函数允许你对错误进行处理和记录...
PHP 2014-12-19 08:03:05 -
PHP Warning: unlink(/xxx/xxx.jpg) : No such file or directory in /xxx.php on line xxx解决方法
本文为大家讲解的是PHP Warning: unlink(/xxx/xxx.jpg) : No such file or directory in /xxx...
PHP 2014-12-19 04:48:03 -
php错误:imagecreatefromjpeg(): gd-jpeg: JPEG library reports unrecoverable error原因及解决方法
本文为大家讲解的是php处理图片错误:PHP Warning: imagecreatefromjpeg() [<a href='function.imagecreatefromjpeg'>function...
PHP 2014-12-19 04:31:53 -
PHP Warning: move_uploaded_file() : Unable to move '/tmp/phps5hMzJ' to '/xxx/xxx.jpg' in /xxx.php on line xx解决方法
本文为大家讲解的是PHP Warning: move_uploaded_file() : Unable to move '/tmp/phps5hMzJ' to '/xxx/xxx.jpg' in /xxx...
PHP 2014-12-19 03:27:03 -
PHP Warning: mkdir(): No such file or directory in错误原因及解决方法
本文为大家讲解的是php错误PHP Warning: mkdir() [<a href='function.mkdir'>function...
PHP 2014-12-19 03:06:03 -
PHP Fatal error: Call to a member function funname() on a non-object in解决方法
本文为大家讲解的是PHP Fatal error: Call to a member function funname() on a non-object in解决方法,感兴趣的同学参考下. 错误描述 完整错误提示PHP Fatal error: Call to a member function 函数名() on a non-object in /xxx...
PHP 2014-12-19 03:00:05