php分割大文本成多個txt文件

<?php $content = $_POST['file']; $arr = preg_split('/[;\r\n]+/s',$content); //將文本分行轉換成數組 $new = array_chunk($arr,40); //分割成小數組 $i = 1; foreach ($new as $item) { file_put_contents($i.'.txt',implod
相關文章
相關標籤/搜索