php-src/ext/pcntl/tests/pcntl_exec_3.phpt
2011-06-24 19:18:06 +00:00

18 lines
411 B
PHP

--TEST--
pcntl_exec() 3
--SKIPIF--
<?php if (!extension_loaded("pcntl")) print "skip"; ?>
--FILE--
<?php
var_dump(pcntl_exec());
$file = tempnam(sys_get_temp_dir(),"php");
var_dump(pcntl_exec($file, array("foo","bar"), array("foo" => "bar")));
unlink($file);
?>
--EXPECTF--
Warning: pcntl_exec() expects at least 1 parameter, 0 given %s
NULL
Warning: pcntl_exec(): Error has occured: (errno %d) %s
bool(false)