Motan is a cross-language remote procedure call(RPC) framework for rapid development of high performance distributed services.
This project is the PHP Motan implementation. Provides PHP motan client.
Using composer:
Just clone this project and add it to your composer.json
.
WithOut Composer:
If you didn't use composer for php libraries management, you would install motan-php by hand,like git clone
, please check the demo at motan-example .
Usage:
we need an defined constant MOTAN_PHP_ROOT
for load the motan php libs. Just like the demo does.
define('MOTAN_PHP_ROOT', '/media/psf/g/idevz/code/z/git/motan-examples/php/vendor/motan/motan-php/src/Motan/');
require MOTAN_PHP_ROOT . 'init.php';
The quick start gives very basic example of running client and server on the same machine. For the detailed information about using and developing Motan, please jump to Documents. the demo case is in the main/ directory
We use Weibo-Mesh to support a PHP Server, Weibo-Mesh is a local agent writen in Golang. But not only a agent, Wei-Mesh take the ability as service governance. There is an example at motan-example
As a CGI agent to php-fpm
cgi-mesh-example-helloworld:
path: com.weibo.motan.HelloWorldService
export: "motan2:9991"
provider: cgi
CGI_HOST: 10.211.55.3
CGI_PORT: 9000
CGI_REQUEST_METHOD: GET
CGI_SCRIPT_FILENAME: /media/psf/g/idevz/code/z/git/motan-examples/php-server/index.php
CGI_DOCUMENT_ROOT: /media/psf/g/idevz/code/z/git/motan-examples/php-server
basicRefer: mesh-server-basicService
As a HTTP agent to any HTTP Server
http-mesh-example-helloworld:
path: com.weibo.motan.HelloWorldService
export: "motan2:9990"
provider: http
HTTP_REQUEST_METHOD: GET
HTTP_URL: http://10.211.55.3:9900/http_server
basicRefer: mesh-server-basicService
define('D_CONN_DEBUG', '10.211.55.3:1234');
$url_str = 'motan2://127.0.0.1:9983/com.weibo.motan.status?group=idevz-test-static';
$url = new \Motan\URL($url_str);
$cx = new \Motan\Client($url);
$rs = $cx->show_batch(['name'=>'idevz']);
if (null === $rs) {
print_r($cx->getResponseException());
}
print_r($cx->getResponseHeader());
print_r($cx->getResponseMetadata());
print_r($rs);
- 周晶(@idevz)
- 郭万韬
- 丁振凯
Motan is released under the Apache License 2.0.