hprose/hprose-pecl

Name: hprose-pecl

Owner: Hprose

Description: Hprose is a cross-language RPC. This project is Hprose serialize/unserialize extension for PHP

Created: 2015-03-10 07:59:46.0

Updated: 2017-10-08 13:12:10.0

Pushed: 2017-03-19 10:51:49.0

Homepage:

Size: 432

Language: C

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Hprose extension for PHP

Join the chat at https://gitter.im/hprose/hprose-pecl Build Status Supported PHP versions: 5.2 .. 7.0 GitHub release License

Introduction

Hprose is a High Performance Remote Object Service Engine.

It is a modern, lightweight, cross-language, cross-platform, object-oriented, high performance, remote dynamic communication middleware. It is not only easy to use, but powerful. You just need a little time to learn, then you can use it to easily construct cross language cross platform distributed application system.

Hprose supports many programming languages, for example:

Through Hprose, You can conveniently and efficiently intercommunicate between those programming languages.

This project is the implementation of Hprose extension for PHP.

Installation

There are many ways to build the package. Below you can find details for most useful ways of package building:


Way 1: Building the package with PHP
  1. Create ext/hprose folder in the php-source-folder. Copy all files from the package into created folder.

  2. Run

    ./buildconf
    

    to rebuild PHP's configure script.

  3. Compile php with option:

    --enable-hprose to build bundled into PHP module

    --enable-hprose=shared to build dinamycally loadable module


Way 2: Building the package with phpize utility
  1. Unpack contents of the package.

  2. Run

    phpize
    

    script, which will prepare environment for building hprose package.

  3. Run

    ./configure --enable-hprose=shared
    

    to generate makefile.

  4. Run

    make
    

    to build hprose extension library. It will be placed into ./modules folder.

  5. Run

    make install
    

    to install hprose extension library into PHP


Way 3: Install via pecl
  1. Run:

    pecl install hprose
    

    That's all.


Usage

This extension is a part of Hprose for PHP, It only implements hprose serialize, unserialize and RPC protocol abstraction layer. The real http client and server implementation are written in PHP. If you want to know how to use it, look at here:

http://github.com/hprose/hprose-php


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.