摘要:
get:是用来取得数据。其要传递过的信息是拼在url后面,因为其功能使然,有长度的限制 post:是用来上传数据。要上传的数据放在request的head里。没有长度限制。主要是用于增加操作 put:也是用来上传数据。但是一般是用在具体的资源上。主要用于修改操作 delete:用来删除某一具体的资源 阅读全文
摘要:
客户端 client.php <?php //PUT $curl_handle = curl_init (); // Set default options. curl_setopt ( $curl_handle, CURLOPT_URL, 'http://my.focus.cn/test/sock 阅读全文
摘要:
第一种 class test{ public static function output($msg){ echo $msg; }}call_user_func_array(array('test', 'output'), array('test')); 第二种 <?phpfunction outp 阅读全文