Examples

Example #1 Yar Server Example

<?php

/* assume this page can be accessed by http://example.com/operator.php */

class Operator {

    
/**
     * Add two operands
     * @param interge 
     * @return interge
     */
    
public function add($a$b) {
        return 
$this->_add($a$b);
    }

    
/**
     * Sub 
     */
    
public function sub($a$b) {
        return 
$a $b;
    }

    
/**
     * Mul
     */
    
public function mul($a$b) {
        return 
$a $b;
    }

    
/**
     * Protected methods will not be exposed
     * @param interge 
     * @return interge
     */
    
protected function _add($a$b) {
        return 
$a $b;
    }
}

$server = new Yar_Server(new Operator());
$server->handle();
?>

Example #2 Access the server in borwser(GET request)

The above example will output something similar to:

Yar Server Info

Example #3 Yar Client Example

<?php
$client 
= new yar_client("http://example.com/operator.php");

/* call directly */
var_dump($client->add(12));

/* call via call */
var_dump($client->call("add", array(32)));


/* __add can not be called */
var_dump($client->_add(12));
?>

The above example will output something similar to:

int(3)
int(5)
PHP Fatal error:  Uncaught exception 'Yar_Server_Exception' with message 'call to api Operator::_add() failed' in *

Example #4 Yar Concurrent Client Example

<?php
function callback($ret$callinfo) {
    echo 
$callinfo['method'] , " result: "$ret "\n";
}

/* register async call to remote services */
Yar_Concurrent_Client::call("http://example.com/operator.php""add", array(12), "callback");
Yar_Concurrent_Client::call("http://example.com/operator.php""sub", array(21), "callback");
Yar_Concurrent_Client::call("http://example.com/operator.php""mul", array(22), "callback");

/* sent all request and wait for response */
Yar_Concurrent_Client::loop();
?>

The above example will output something similar to:

mul result: 4
sub result: 1
add result: 3

Here you can write a comment


Please enter at least 10 characters.
Loading... Please wait.
* Pflichtangabe
There are no comments available yet.

Midjourney Tutorial - Instructions for beginners

There is an informative video about Midjourney, the tool for creating digital images using artificial intelligence, entitled "Midjourney tutorial in German - instructions for beginners" ...

Mike94

Autor : Mike94
Category: KI Tutorials

Basics of views in MySQL

Views in a MySQL database offer the option of creating a virtual table based on the result of an SQL query. This virtual table can be queried like a normal table without changing the underlying data. ...

admin

Autor : admin
Category: mySQL-Tutorials

Definition of stored procedures - an introduction

Stored procedures are predefined SQL code blocks that are stored in a database and can be called up as required. ...

Bernie

Autor : ebiz-consult GmbH & Co. KG
Category: mySQL-Tutorials

Publish a tutorial

Share your knowledge with other developers worldwide

Share your knowledge with other developers worldwide

You are a professional in your field and want to share your knowledge, then sign up now and share it with our PHP community

learn more

Publish a tutorial