2019独角兽企业重金招聘Python工程师标准>>>
-
使用php将数据写入到指定的文件
$str="<?php return".var_export($phiz,true)."?>";
file_put_contents('./Data/phiz.php');
-
使用php读取指定的文件 $phiz=include './Data/phiz.php'; 或者:$phiz=file_get_contents($phiz); dump($phiz);
-
使用tp的方法将数据写入到指定的文件
F('phiz',$phiz,'./Data/');
4. 使用tp的方法将指定文件的读取出来
$phiz=F('phiz','','./Data/');