PHP與ThinkPHP讀寫文件

  1. 使用php將數據寫入到指定的文件
      $str="<?php return".var_export($phiz,true)."?>";
      file_put_contents('./Data/phiz.php');
        php

  2. 使用php讀取指定的文件                                                                                 $phiz=include './Data/phiz.php';                                                                                     或者:$phiz=file_get_contents($phiz);                                                                                 dump($phiz);get

  3. 使用tp的方法將數據寫入到指定的文件   
      F('phiz',$phiz,'./Data/');file

    4.  使用tp的方法將指定文件的讀取出來
         $phiz=F('phiz','','./Data/');方法

相關文章
相關標籤/搜索