首页 > 资讯列表 >  本页面生成HEG专题报道,HEG滚动新闻,HEG业界评论等相关报道!
  • 用PHP ob_start()控制浏览器cache、生成html实现代码

    用PHP ob_start()控制浏览器cache、生成html实现代码

    本文为大家讲解了如何用PHP ob_start()控制浏览器cache、生成html的实现方法,感兴趣的同学参考下。 Output Control 函数可以让你自由控制脚本中数据的输出...

    PHP 2015-01-02 13:36:04
  • 注意:php5.4删除了session_unregister函数

    注意:php5.4删除了session_unregister函数

    在php5.4版本中,应经删除了session_unregister该函数。朋友们注意一下 前几天安装了dedecms系统,当在后台安全退出的时候,后台出现空白,先前只分析其他功能去了,也没太注意安全,看了一下安全退出的代码,是这样写的: function exitUser()   {     ClearMyAddon();     @($this->keepUserIDTag);     @session_unregister($this->keepUserTypeTag);     @session_unregister($this->keepUserChannelTag);     @session_unregister($this->keepUserNameTag);     @session_unregister($this->kee...

    PHP 2015-01-02 03:30:04
  • php错误:PHP Warning: date(): It is not safe to rely on the system's timezone settings.解决方法

    php错误:PHP Warning: date(): It is not safe to rely on the system's timezone settings.解决方法

    本文为大家讲解的是PHP Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for '8.0/no DST' instead in问题的解决方法,感兴趣的同学参考下. 在写php程序中有时会出现这样的警告: PHP Warning: date(): It is not safe to rely on the system's timezone se...

    PHP 2015-01-02 02:54:03
  • PHP中spl_autoload_register函数的用法总结及示例演示

    PHP中spl_autoload_register函数的用法总结及示例演示

    本文为大家讲解的是PHP中spl_autoload_register函数的用法总结及示例演示,感兴趣的同学参考下. spl_autoload_register (PHP 5 >= 5.1.2) spl_autoload_register — 注册__autoload()函数 说明 bool spl_autoload_register ([ callback $autoload_function ] ) 将函数注册到SPL __autoload函数栈中。如果该栈中的函数尚未激活,则激活它们...

    PHP 2015-01-01 15:54:06
  • php中使用preg_replace函数匹配图片并加上链接的方法

    php中使用preg_replace函数匹配图片并加上链接的方法

    本文为大家讲解的是php中使用preg_replace函数匹配图片并加上链接的方法示例,感兴趣的同学参考下。 preg_replace 执行正则表达式的搜索和替换,如果只是单纯的匹配字符串建议使用str_replace(),因为其执行效率高的多 介绍:preg_replace 执行正则表达式的搜索和替换,如果只是单纯的匹配字符串建议使用str_replace(),因为其执行效率高的多...

    PHP 2015-01-01 02:30:03
  • linux下编译php 5.2.14+fpm+memcached教程

    linux下编译php 5.2.14+fpm+memcached教程

    本文为大家讲解的是linux下编译php 5.2...

    PHP 2015-01-01 02:27:04
  • is marked as crashed and should be repaired解决方法 mysql错误

    is marked as crashed and should be repaired解决方法 mysql错误

    本文为大家讲解的是mysql错误is marked as crashed and should be repaired解决方法,感兴趣的同学参考下。 问题描述 由于服务器存储满了导致MySQL启动不起来了,清理了存储空间后再启动MySQL报了个“Table XX is marked as crashed and should be repaired”,看意思应该是表损坏了 解决方法 解决这个用 myisamchk 就可以了(我的表都是ISAM引擎的)...

    数据库操作教程 2014-12-31 00:03:04
  • php中addslashes函数与sql防注入详解

    php中addslashes函数与sql防注入详解

    这篇文章主要介绍了php中addslashes函数与sql防注入,实例讲述了采用addslashes函数对于sql防注入的用处,对于PHP安全程序设计来说具有不错的参考借鉴价值,需要的朋友可以参考下 addslashes可会自动给单引号,双引号增加\\\,这样我们就可以安全的把数据存入数据库中而不黑客利用,参数'a....

    PHP 2014-12-28 18:54:04
  • php Hex RGB颜色值互换的使用

    php Hex RGB颜色值互换的使用

    本文为大家讲解的是php Hex RGB颜色值互换的使用示例,感兴趣的同学参考下。 <?php echo implode ( ",", HexToRGB ( "#F7F7DA" ) ) . "<br/>"; echo RGBToHex ( "rgb(247,247,218)" )?> <?php function HexToRGB($colour) {     if ($colour [0] == '#') {         $colour = substr ( $colour, 1 );     }     if (strlen ( $colour ) == 6) {         li...

    PHP 2014-12-28 18:33:06
  • windows中PHP5.2.14以及apache2.2.16安装配置

    windows中PHP5.2.14以及apache2.2.16安装配置

    本文为大家讲解的是windows中PHP5.2.14以及apache2.2.16的安装配置教材,需要配置php运行环境的朋友可以参考下。 首先下载好需要安装的配置文件 1、apache-2.2.16 2、php-5.2.14-Win32 一、apache配置 apache的安装不说了,安装过程中选择自己想安装的位置,一路next,就可以了...

    PHP 2014-12-28 02:27:03
  • PHP中的Cannot modify header information 问题解决方法

    PHP中的Cannot modify header information 问题解决方法

    本文为大家讲解的是PHP中的Cannot modify header information 问题解决方法,感兴趣的同学参考下。 我就遇到这种问题,网上找到这个解决的方案,就收藏下 写PHP的朋友们肯定遇到过这样一个问题:通过header函数改变http协议头的时候,会出现一个类似下面格式的warning: Warning: Cannot modify header information - headers already sent by 这是为什么呢?因为在使用header函数之前,您不能输出任何东西,包括用echo或var_dump等输出函数的输出,还有在<?php之前的空格...

    PHP 2014-12-28 02:24:08
  • Hessian在PHP中的应用示例

    Hessian在PHP中的应用示例

    本文为大家讲解的是Hessian在PHP中的应用示例,感兴趣的同学参考学习下。 什么是Hessian   Hessian是由caucho提供的一种开源的远程通讯协议...

    PHP 2014-12-27 15:00:18

站长搜索

http://www.adminso.com

Copyright @ 2007~2025 All Rights Reserved.

Powered By 站长搜索

打开手机扫描上面的二维码打开手机版


使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

站长搜索目录系统技术支持