PHP 8.5.0 Released!

The Yar_Client class

(No version information available, might only be in Git)

Introduzione

Sommario della classe

class Yar_Client {
/* Proprietà */
protected $_protocol;
protected $_uri;
protected $_options;
protected $_running;
/* Metodi */
public __call(string $method, array $parameters): void
final public __construct(string $url, array $options = ?)
public setOpt(int $name, mixed $value): Yar_Client|false
}

Proprietà

_protocol

_uri

_options

_running

Indice dei contenuti

add a note

User Contributed Notes 1 note

up
-1
porschegt23 at foxmail dot com
9 years ago
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(10, 20);
?>
To Top