mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
216 B
PHP
12 lines
216 B
PHP
<?php
|
|
|
|
$ch = curl_init("https://localhost");
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
$body = curl_exec($ch);
|
|
|
|
curl_close($ch);
|
|
|
|
if ($body !== "Caddy is up and running") {
|
|
die("skip test needs Caddy");
|
|
}
|