mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
22 lines
392 B
PHP
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);
|
|
}
|
|
}
|
|
|