使用php將數據寫入到指定的文件
$str="<?php return".var_export($phiz,true)."?>";
file_put_contents('./Data/phiz.php');
php
使用php讀取指定的文件 $phiz=include './Data/phiz.php'; 或者:$phiz=file_get_contents($phiz); dump($phiz);get
使用tp的方法將數據寫入到指定的文件
F('phiz',$phiz,'./Data/');file
4. 使用tp的方法將指定文件的讀取出來
$phiz=F('phiz','','./Data/');方法