教学之友,学习之友。

站长教学网

当前位置:主页 > TAG标签 > php
  • [原创]php使用soap扩展客户端提交的一些问题 日期:2013-11-29 16:11:09 点击:290 好评:0

    首先查看php的soap扩展是否打开,默认是没有打开soap扩展的,输出phpinfo查看下,没有就在php.ini配置文件里面打开下。 下面介绍使用soap一些技巧: $client = new SoapClient('http://xxx?wsdl');//直...

  • 使用php扩展soap提供web service服务wsdl 日期:2013-11-29 15:43:17 点击:212 好评:0

    PHP的SOAP扩展可以用来提供和使用 Web service s。换句话说,PHP开发者可以利用这个PHP扩展来写他们自己的Web services,也可以写一些客户端来使用给定的Web services。 PHP5中的这个SOAP扩展目的...

  • php安装扩展之phpize 日期:2013-09-30 22:40:17 点击:101 好评:0

    Compiling shared PECL extensions with phpize Sometimes, using the pecl installer is not an option. This could be because you're behind a firewall, or it could be because the extension you want to install is not available as a PECL compatibl...

  • redis的php扩展安装和使用方法大全 日期:2013-09-27 11:28:19 点击:566 好评:2

    https://github.com/owlient/phpredis //使用autoload加载相关库,这边重点就是为了require $file; spl_autoload_register ( function ( $class ) { $file = __DIR__ . '/lib/Predis/' . $class . '.php' ; if ( file_exists ( $file ) ) { req...

  • centos5下redis和php扩展的安装方法 日期:2013-09-25 16:09:23 点击:204 好评:2

    redis是一个内存数据库,比memcache支持更丰富的value类型,新浪微博就使用redis来做缓存。 redis的源码安装 wget http: //download .redis.io /redis-stable . tar .gz tar -zxvf redis-stable. tar .gz cd redis-stabl...

  • [原创]CentOS6.3系统64位安装php5.3.27找不到相关so文件 日期:2013-09-17 20:15:02 点击:454 好评:2

    今天要给新服务器安装php稳定版5.3.27的时候 配置没问题,编译的时候先是提示找不到libiconv 先要确认是否已经安装了libiconv-1.14.tar.gz。 make编译的时候依然提示 undefined reference to `libico...

  • PHP中的htmlentities和htmlspecialchars函数区别 日期:2013-08-29 13:24:30 点击:175 好评:2

    一直都知道 PHP 中的 htmlentities 和 htmlspecialchars 函数都能把 html 中的特殊字符转换成对应的 character entity (不知道怎么翻译),也一直都知道 htmlentities 和 htmlspecialchars 函数有区别,但是...

  • php超大数字防注入intval函数溢出的解决方法 日期:2013-07-13 12:08:50 点击:417 好评:4

    防注入的时候 使用intval强制转换成数字的问题。数字大于2147483647会出现溢出出现负数。使用个方法来替代这个吧 $n=\n; $a=2147483648.05555; echo intval($a).$n; //result -2147483648 echo (int) $a,$n;//re...

  • windows配置PHP系统环境变量 日期:2013-06-13 13:46:11 点击:212 好评:2

    安装好php后, 右击桌面上「计算机」,选择「属性」,选择「高级系统设置」,点击「环境变量」。 在系统变量中找到「Path」并双击,在变量值内最前端添加:php的安装路径,如:...

  • 解决php加载php_curl.dll出现警告PHP Warning 日期:2013-05-16 11:39:05 点击:105 好评:0

    好久没有收到在xp上面配置php+mysql+apache了,今晚搞了半天,遇到各种问题。 在启动apache时,出现如下警告: PHP Warning: PHP Startup: in Unknown on line 0 没有其他信息了。 虽然暂时没有发现有...

推荐内容