php-src/ext/standard/tests/general_functions/proc_open_pipes.inc
2015-05-29 17:35:12 +03:00

22 lines
392 B
PHP

<?php
function create_sleep_script()
{
$fname = dirname(__FILE__) . DIRECTORY_SEPARATOR . "proc_open_pipes_sleep.php";
if (!file_exists($fname)) {
file_put_contents($fname, "<?php\nsleep(1);\n");
}
return $fname;
}
function unlink_sleep_script()
{
$fname = dirname(__FILE__) . DIRECTORY_SEPARATOR . "proc_open_pipes_sleep.php";
if (file_exists($fname)) {
unlink($fname);
}
}