The Yar_Client class

(Информация о версии неизвестна, возможно, только в SVN)

Введение

Обзор классов

Yar_Client {
/* Свойства */
protected $_protocol ;
protected $_uri ;
protected $_options ;
protected $_running ;
/* Методы */
public void __call ( string $method , array $parameters )
final public __construct ( string $url )
public boolean setOpt ( number $name , mixed $value )
}

Свойства

_protocol

_uri

_options

_running

Содержание

Коментарии

A simple example on here:

server.php
<?php
class API {
   
    public function 
api($parameter ""$option "foo") {
          return 
$this->client_can_not_see($parameter);
    }
 
 
    public function 
doAdd($a 0$b 0) {
          return 
$a+$b;
    }
   
    protected function 
client_can_not_see$name ) {
      return 
"你好$name~";
    }
}

$service = new Yar_Server ( new API () );
$service->handle ();
?>
client.php
<?php
  $client 
= new Yar_Client("http://host/server.php");
 
$result $client->api("parameter");
  echo 
$result.'<hr>';
  echo 
$client->doAdd(1020);
?>
2016-07-05 14:07:03
http://php5.kiev.ua/manual/ru/class.yar-client.html

    Поддержать сайт на родительском проекте КГБ