时间:2021-07-01 10:21:17 帮助过:4人阅读
例如ucenter 整合第三方PHP应用程序,ucenter向多个应用建立连接,我们只要在第三方PHP应用程序uc.php里面$get变量写入文件,然后读文件,就能知道ucenter向每个应用发送的action,id等数据。
php把数组写入文件
$file=”./data/log.txt”;
$array = array(“count” => “3000″, “num” => “300″);
file_put_contents($file,serialize($array));//写入缓存
?>
作者“danbaise”
http://www.bkjia.com/PHPjc/478643.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/478643.htmlTechArticle1.用echo、print、print_r、var_export或var_dump等直接输出到浏览器 这种情况在页面中间没有出现中断和跳转,一般后面跟exit。 项目正式上线以后...