at path:
ROOT
/
wp-includes
/
IXR
/
class-IXR-request.php
run:
R
W
Run
class-IXR-base64.php
414 By
2016-08-26 22:08:33
R
W
Run
Delete
Rename
class-IXR-client.php
4.67 KB
2020-06-30 19:50:04
R
W
Run
Delete
Rename
class-IXR-clientmulticall.php
1.23 KB
2020-06-30 19:50:04
R
W
Run
Delete
Rename
class-IXR-date.php
1.65 KB
2019-05-26 00:12:54
R
W
Run
Delete
Rename
class-IXR-error.php
854 By
2016-08-26 22:08:33
R
W
Run
Delete
Rename
class-IXR-introspectionserver.php
5.24 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
class-IXR-message.php
8.21 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
class-IXR-request.php
927 By
2016-08-26 22:08:33
R
W
Run
Delete
Rename
class-IXR-server.php
6.61 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
class-IXR-value.php
3.7 KB
2016-08-26 22:08:33
R
W
Run
Delete
Rename
error_log
7.89 KB
2026-02-05 03:54:03
R
W
Run
Delete
Rename
error_log
up
📄
class-IXR-request.php
Save
<?php /** * IXR_Request * * @package IXR * @since 1.5.0 */ class IXR_Request { var $method; var $args; var $xml; /** * PHP5 constructor. */ function __construct($method, $args) { $this->method = $method; $this->args = $args; $this->xml = <<<EOD <?xml version="1.0"?> <methodCall> <methodName>{$this->method}</methodName> <params> EOD; foreach ($this->args as $arg) { $this->xml .= '<param><value>'; $v = new IXR_Value($arg); $this->xml .= $v->getXml(); $this->xml .= "</value></param>\n"; } $this->xml .= '</params></methodCall>'; } /** * PHP4 constructor. */ public function IXR_Request( $method, $args ) { self::__construct( $method, $args ); } function getLength() { return strlen($this->xml); } function getXml() { return $this->xml; } }