@@ -57,6 +57,7 @@ class Client
57
57
const OPT_USE_CURL = 'use_curl ' ;
58
58
const OPT_VERIFY_HOST = 'verifyhost ' ;
59
59
const OPT_VERIFY_PEER = 'verifypeer ' ;
60
+ const OPT_EXTRA_HEADERS = 'extra_headers ' ;
60
61
61
62
/** @var string */
62
63
protected static $ requestClass = '\\PhpXmlRpc \\Request ' ;
@@ -258,6 +259,13 @@ class Client
258
259
*/
259
260
protected $ user_agent ;
260
261
262
+ /**
263
+ * Additional headers to be included in the requests.
264
+ *
265
+ * @var string[]
266
+ */
267
+ protected $ extra_headers = array ();
268
+
261
269
/**
262
270
* CURL handle: used for keep-alive
263
271
* @internal
@@ -299,6 +307,7 @@ class Client
299
307
self ::OPT_USERNAME ,
300
308
self ::OPT_VERIFY_HOST ,
301
309
self ::OPT_VERIFY_PEER ,
310
+ self ::OPT_EXTRA_HEADERS ,
302
311
);
303
312
304
313
/**
@@ -999,6 +1008,11 @@ protected function sendViaSocket($req, $method, $server, $port, $path, $opts)
999
1008
$ cookieHeader = 'Cookie: ' . $ version . substr ($ cookieHeader , 0 , -1 ) . "\r\n" ;
1000
1009
}
1001
1010
1011
+ $ extraHeaders = '' ;
1012
+ if (!empty ($ this ->extra_headers ) && is_array ($ this ->extra_headers )) {
1013
+ $ extraHeaders = implode ("\r\n" , $ this ->extra_headers ) . "\r\n" ;
1014
+ }
1015
+
1002
1016
// omit port if default
1003
1017
if (($ port == 80 && in_array ($ method , array ('http ' , 'http10 ' ))) || ($ port == 443 && $ method == 'https ' )) {
1004
1018
$ port = '' ;
@@ -1015,6 +1029,7 @@ protected function sendViaSocket($req, $method, $server, $port, $path, $opts)
1015
1029
$ encodingHdr .
1016
1030
'Accept-Charset: ' . implode (', ' , $ opts ['accepted_charset_encodings ' ]) . "\r\n" .
1017
1031
$ cookieHeader .
1032
+ $ extraHeaders .
1018
1033
'Content-Type: ' . $ req ->getContentType () . "\r\nContent-Length: " .
1019
1034
strlen ($ payload ) . "\r\n\r\n" .
1020
1035
$ payload ;
@@ -1340,6 +1355,10 @@ protected function createCURLHandle($req, $method, $server, $port, $path, $opts)
1340
1355
$ headers [] = $ encodingHdr ;
1341
1356
}
1342
1357
1358
+ if (!empty ($ this ->extra_headers ) && is_array ($ this ->extra_headers )) {
1359
+ $ headers = array_merge ($ headers , $ this ->extra_headers );
1360
+ }
1361
+
1343
1362
// Fix the HTTP/1.1 417 Expectation Failed Bug (curl by default adds a 'Expect: 100-continue' header when POST
1344
1363
// size exceeds 1025 bytes, apparently)
1345
1364
$ headers [] = 'Expect: ' ;
0 commit comments