我将以下代码存储在名为 index.php 的文件中。
<?php
file_put_contents(date('Y-m-d-H-i-s', time()) . '.txt', '123');
sleep(1);
header("Location: ./index.php", true, 301);
?>
在浏览器中,它每秒创建一个文件,但是当我在 php CLI (php -f index.php) 中运行它时,它只会创建一个文件。
如何在 php CLI 中使用重定向?
我将以下代码存储在名为 index.php 的文件中。
<?php
file_put_contents(date('Y-m-d-H-i-s', time()) . '.txt', '123');
sleep(1);
header("Location: ./index.php", true, 301);
?>
在浏览器中,它每秒创建一个文件,但是当我在 php CLI (php -f index.php) 中运行它时,它只会创建一个文件。
如何在 php CLI 中使用重定向?