Home  >  Article  >  php教程  >  php纯属疑问

php纯属疑问

PHP中文网
PHP中文网Original
2016-05-25 17:09:211149browse

php代码:

<?php
set_time_limit(0);
function setbaseinfo($start_id) {
        $start_id++;
        if($start_id < 20000) {
            file_put_contents(&#39;log&#39;, $start_id."\n", FILE_APPEND);
            //echo $start_id."<br/>";
            setbaseinfo($start_id);
        }
}

setbaseinfo(0);

?>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn