We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff2bffb commit 0813e88Copy full SHA for 0813e88
README
@@ -36,6 +36,9 @@ require 'vendor/autoload.php';
36
37
use Adoy\FastCGI\Client;
38
39
+// Existing socket, such as Lighttpd with mod_fastcgi:
40
+$client = new Client('unix:///path/to/php/socket', -1);
41
+// Fastcgi server, such as PHP-FPM:
42
$client = new Client('localhost', '9000');
43
$content = 'key=value';
44
echo $client->request(
0 commit comments