
Php
java_mail_test
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
php面向对象学习
php中可以创建一个类--------------HelloWorld.php--------------代码如下:<?php class HelloWorld { public $world ; function __construct($world) { $this -> world = $world; } fun...2009-10-22 18:54:31 · 89 阅读 · 0 评论 -
Php继承与父类构造方法的调用
Animal类 class Animal { private $kind ; function __construct($kind) { $this -> kind = $kind; } function wow() { echo $this -> kind; } } Cat类 ...2009-10-22 19:06:06 · 669 阅读 · 0 评论 -
php方法重载
class Test { function __call($name , $args) { $method = $name."__".count($args); return call_user_func_array(array($this , $method) , $args); } function add__2($a , $b) { echo ($a...2009-10-23 08:11:48 · 135 阅读 · 0 评论 -
HttpClient超时处理
http://blog.chinaunix.net/u1/56194/showart_462504.html2009-11-23 20:29:23 · 151 阅读 · 0 评论