zoukankan      html  css  js  c++  java
  • 复制文件并在规定行插入数据

    /*public function copyfile($str,$pre){
    copy('test.php','array.php');
    $arrInsert = insertfile("array.php", $str, 3, 0);
    unlink("array.php");
    foreach($arrInsert as $value)
    {
    file_put_contents($pre.".php", $value, FILE_APPEND);
    }

    }
    public function insertfile($source, $s, $iLine, $index) {
    $file_handle = fopen($source, "r");
    $i = 0;
    $arr = array();
    while (!feof($file_handle)) {
    $line = fgets($file_handle);
    ++$i;
    if ($i == $iLine) {
    if($index == strlen($line)-1)
    $arr[] = substr($line, 0, strlen($line)-1) . $s . "n";
    else
    $arr[] = substr($line, 0, $index) . $s . substr($line, $index);
    }else {
    $arr[] = $line;
    }
    }
    fclose($file_handle);
    return $arr;
    }*/
  • 相关阅读:
    链表详解自带代码
    队列
    单词翻转
    表达式求值
    一元多项式
    循环链表
    学生成绩管理系统
    双向循环链表
    双向链表
    静态链表
  • 原文地址:https://www.cnblogs.com/lyy-php/p/4793919.html
Copyright © 2011-2022 走看看