PHPackages                             ang3/php-xmlrpc-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. ang3/php-xmlrpc-client

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

ang3/php-xmlrpc-client
======================

PHP XML-RPC client

v1.0.3(4y ago)359.5k↓24.3%4[1 issues](https://github.com/Ang3/php-xmlrpc-client/issues)2MITPHPPHP ^7.2|^8.0

Since Jul 15Pushed 4y agoCompare

[ Source](https://github.com/Ang3/php-xmlrpc-client)[ Packagist](https://packagist.org/packages/ang3/php-xmlrpc-client)[ RSS](/packages/ang3-php-xmlrpc-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (2)Versions (5)Used By (2)

PHP XML-RPC client
==================

[](#php-xml-rpc-client)

[![Build Status](https://camo.githubusercontent.com/8467e66bf9bcc86fd5bd15e80acdfc48c44cf9d8dde229043bae7c1a7f10053e/68747470733a2f2f6170692e7472617669732d63692e636f6d2f416e67332f7068702d786d6c7270632d636c69656e742e7376673f6272616e63683d6d6173746572)](https://app.travis-ci.com/github/Ang3/php-xmlrpc-client)[![Latest Stable Version](https://camo.githubusercontent.com/ecbc4efdd8943da040ad80c60e17df6b81fe0c0737cd937bc6da6735c98d2260/68747470733a2f2f706f7365722e707567782e6f72672f616e67332f7068702d786d6c7270632d636c69656e742f762f737461626c65)](https://packagist.org/packages/ang3/php-xmlrpc-client)[![Latest Unstable Version](https://camo.githubusercontent.com/ec747a62eadb4ca5bd1c362c1bbb056260724bfe384a8e37521e6b1db7bae793/68747470733a2f2f706f7365722e707567782e6f72672f616e67332f7068702d786d6c7270632d636c69656e742f762f756e737461626c65)](https://packagist.org/packages/ang3/php-xmlrpc-client)[![Total Downloads](https://camo.githubusercontent.com/97003efca7021f45a07980c0796945f9c3714491433d5f05cf9d8be8d7dfc4d3/68747470733a2f2f706f7365722e707567782e6f72672f616e67332f7068702d786d6c7270632d636c69656e742f646f776e6c6f616473)](https://packagist.org/packages/ang3/php-xmlrpc-client)

PHP XML-RPC **client only** inspired from package [DarkaOnLine/Ripcord](https://packagist.org/packages/darkaonline/ripcord). The code was rewritted so as to isolate the XML-RPC client and fix code at the same time.

Requirements
============

[](#requirements)

The PHP extension `php-xmlrpc` must be enabled.

Installation
============

[](#installation)

Open a command console, enter your project directory and execute the following command to download the latest stable version of the client:

```
$ composer require ang3/php-xmlrpc-client
```

This command requires you to have Composer installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

Usage
=====

[](#usage)

Create your client by calling the constructor with the URL of a XML-RPC server. Then, call the desired method with optional arguments:

```
require_once 'vendor/autoload.php';

use Ang3\Component\XmlRpc\Client;

// Create the client
$client = new Client('');

// Call a method and get result
$result = $client->call('method_name', $args = []);
```

> - A `Ang3\Component\XmlRpc\Transport\TransportException` when the request to the server failed.
> - A `Ang3\Component\XmlRpc\Exception\RemoteException` is thrown if the XML-RPC server returns an error.
> - Both of previous exceptions extend exception `Ang3\Component\XmlRpc\Exception\RequestException`

That's it!

Upgrades &amp; updates
======================

[](#upgrades--updates)

### v1.0.3 (last stable)

[](#v103-last-stable)

- PHP 8.0 support

### v1.0.2

[](#v102)

- Fixed exceptions

### v1.0.1

[](#v101)

- Moved transport exception to transport folder.

### v1.0.0

[](#v100)

- First release.

###  Health Score

35

—

LowBetter than 80% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity36

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~172 days

Total

4

Last Release

1617d ago

PHP version history (2 changes)v1.0.0PHP ^7.2

v1.0.3PHP ^7.2|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/d85891b6716c7a111bc56143f6b165b3c76e84a575ef4ab26f4fa8c8694489ef?d=identicon)[Ang3](/maintainers/Ang3)

---

Top Contributors

[![Ang3](https://avatars.githubusercontent.com/u/7427494?v=4)](https://github.com/Ang3 "Ang3 (32 commits)")

---

Tags

phpclientxmlrpcxmlrpc

### Embed Badge

![Health badge](/badges/ang3-php-xmlrpc-client/health.svg)

```
[![Health](https://phpackages.com/badges/ang3-php-xmlrpc-client/health.svg)](https://phpackages.com/packages/ang3-php-xmlrpc-client)
```

###  Alternatives

[darkaonline/ripcord

RPC client and server around PHP's xmlrpc library

35897.7k9](/packages/darkaonline-ripcord)[robroypt/odoo-client

A PHP Client for Odoo using Ripcord RPC library (as used in Odoo Web API docs)

2149.4k](/packages/robroypt-odoo-client)[goetas/xsd2php-runtime

Convert XSD (XML Schema) definitions into PHP classes

493.3k](/packages/goetas-xsd2php-runtime)[bupy7/xml-constructor

The array-like constructor of XML document structure.

1337.9k](/packages/bupy7-xml-constructor)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
