php-src/sapi/cli/tests/php_cli_server.inc

47 lines
1.1 KiB
PHP
Raw Normal View History

2011-09-20 07:10:46 +00:00
<?php
define ("PHP_CLI_SERVER_ADDRESS", "localhost:8964");
function php_cli_server_start($code = 'echo "Hello world";', $no_router = FALSE) {
2011-10-25 10:54:39 +00:00
$php_executable = getenv('TEST_PHP_EXECUTABLE');
2011-09-20 07:10:46 +00:00
$doc_root = __DIR__;
$router = "index.php";
2011-11-15 03:19:54 +00:00
if ($code) {
file_put_contents($doc_root . '/' . $router, '<?php ' . $code . ' ?>');
}
2011-09-20 07:10:46 +00:00
$descriptorspec = array(
0 => STDIN,
1 => STDOUT,
2 => STDERR,
2011-09-20 07:10:46 +00:00
);
2011-10-25 10:54:39 +00:00
if (substr(PHP_OS, 0, 3) == 'WIN') {
$cmd = "{$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS;
2011-10-25 10:54:39 +00:00
if (!$no_router) {
$cmd .= " {$router}";
}
$handle = proc_open(addslashes($cmd), $descriptorspec, $pipes, $doc_root, NULL, array("bypass_shell" => true, "suppress_errors" => true));
2011-10-25 10:54:39 +00:00
} else {
$cmd = "exec {$php_executable} -t {$doc_root} -n -S " . PHP_CLI_SERVER_ADDRESS;
2011-10-25 10:54:39 +00:00
if (!$no_router) {
$cmd .= " {$router}";
}
$cmd .= " 2>/dev/null";
2011-09-20 07:10:46 +00:00
2011-10-25 10:54:39 +00:00
$handle = proc_open($cmd, $descriptorspec, $pipes, $doc_root);
}
2011-09-20 07:10:46 +00:00
2011-10-25 10:54:39 +00:00
register_shutdown_function(
function($handle) use($router) {
2011-10-25 10:54:39 +00:00
proc_terminate($handle);
@unlink(__DIR__ . "/{$router}");
},
$handle
2011-10-25 10:54:39 +00:00
);
usleep(50000);
2011-09-20 07:10:46 +00:00
}
?>