码迷,mamicode.com
首页 >  
搜索关键字:file_put_contents    ( 113个结果
php将数组写入配置文件
$arr=array(‘a‘,‘b‘,‘c‘); $str=‘<?php$array=‘.var_export($arr,true); file_put_contents(‘result.txt‘,$str);var_export此函数返回关于传递给该函数的变量的结构信息,它和var_dump()类似,不同的是其返回的表示是合法的PHP代码。您可以通过将函数的第二个参数设置为TRUE..
分类:编程语言   时间:2015-07-20 16:58:33    阅读次数:168
php 生成.txt文件
$content =array('color'=> array('blue','red','green'),'size'=> array('small','medium','large')); $wx=json_encode($content);echo file_put_contents("tes...
分类:Web程序   时间:2015-07-17 17:37:26    阅读次数:140
php+mysql 数据库分表分段备份程序--宋正河
$filesize){//写入文件并跳转$file='data/'.$table.'-'.$part.'.sql';file_put_contents($file,$backupdata);echo$file.'备份完成,程序继续进行!';$part++;//分段//表名//起点//跳转sleep(...
分类:数据库   时间:2015-06-17 09:20:56    阅读次数:130
绕过 <?PHP exit('Access Denied'); ?> 限制
绕过 限制$endstr='s';$timestamp=$endstr.$shellcode;file_put_contents("php://filter/write=convert.base64-decode/resource=ryat.php","\t$timestamp");?>利用bas....
分类:数据库   时间:2015-06-10 20:41:08    阅读次数:1037
彻底禁用ECSHOP缓存
//首先打开includes/cls_template.php这个文件找到198行至202行(我使用的是2.72版本,其他版本也应该大同小异),我们看到ecshop是通过file_put_contents函数将缓存写入文件的,我们只要将其注释掉就可以了。修改前代码如下:if (file_put_co...
分类:其他好文   时间:2015-06-09 13:20:38    阅读次数:102
把php日志写入文件
$file = 'log.txt';$content = "内容";file_put_contents($file, $content,FILE_APPEND);
分类:Web程序   时间:2015-06-02 17:01:56    阅读次数:135
微信公众号-5秒内不回复测试并处理方案,顺便复习php 时间执行
在index.php中file_put_contents('has_request.txt','请求时间:'.date('YmdHis')."\n",FILE_APPEND);file_put_contents('a','执行开始时:'.date('YmdHis')."\n",FILE_APPEND...
分类:微信   时间:2015-05-15 01:17:28    阅读次数:517
php获取远程图片的三种方式
1:file_get_contents,file_put_contents方式<?php functiondownload_remote_file($file_url,$save_to) { $content=file_get_contents($file_url); file_put_contents($save_to,$content); }?>用法:<?php download_remote_file(‘http://www.54ux.com/wp-conte..
分类:Web程序   时间:2015-05-14 20:45:51    阅读次数:179
php保存文件
function save($db){ //转换合法数组 $inputDb=var_export($db,TRUE); //组合写入字符串 $inputStr=str; //写入文件 file_put_contents('db.php', $inputStr);}
分类:Web程序   时间:2015-04-22 13:08:55    阅读次数:131
PHP实现页面静态化
1、通过buffer来实现需要用file_put_contents ob_get_clean()等内置函数ob_start ();include "filterpost.html";$mtime = filemtime("./filterpost.html");//在这里可以判断文件是否存在和过期,...
分类:Web程序   时间:2015-04-19 21:11:12    阅读次数:141
113条   上一页 1 ... 7 8 9 10 11 12 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!