• 将数组打印到txt文件中


    用print_r 将数组打印到txt文件中。

    复制代码
     
     
    1、
    function save_log($content='', $file='app') {
    $logDir = './logs';
    $now = date('Y');
    $nowDir = $logDir.'/'.$now;
    if(!is_dir($nowDir)) {
    mkdir($nowDir, 0777, true);
    chmod($nowDir, 0777);
    }
    $fileDir = $nowDir.'/'.$file.'.log';
    // chmod($file.'.log', 0777);
    file_put_contents($fileDir, date('Y-m-d H:i:s').PHP_EOL, FILE_APPEND);
    $results = print_r($content, true);
    file_put_contents($fileDir, print_r($content, true), FILE_APPEND);
    file_put_contents($fileDir, PHP_EOL, FILE_APPEND);
    }
     
    2、
    <?php
    $b = array (
        'm' => 'monkey', 
        'foo' => 'bar', 
        'x' => array ('x', 'y', 'z'));
    
    $results = print_r($b, true); 
    file_put_contents('filename.txt', print_r($b, true));
    ?>
  • 相关阅读:
    CodeForces 587A
    矩阵快速幂模板
    LCA模板
    Codeforces Round #226 (Div. 2 )
    Codeforces Round #225 (Div. 2)
    SGU132
    SRM 599 DIV 2
    POJ1038
    SGU223
    POJ1185
  • 原文地址:https://www.cnblogs.com/arvin-an/p/10523601.html
Copyright © 2020-2023  润新知