码迷,mamicode.com
首页 > Web开发 > 详细

php小代码(1)

时间:2015-07-27 08:15:53      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:php

<?php $fp = fopen("test.txt", "r"); 
$firstLines = fgets($fp); 
fclose($fp); 
$vars = explode(‘ ‘, $firstLines,2); 
if(DIRECTORY_SEPARATOR == ‘/‘){  
  file_put_contents(‘test.log‘, $vars[0].‘ ‘.date(‘Y-m-d H:i:s‘,time())."\r\n",FILE_APPEND); 
  else{  
    file_put_contents(‘test.log‘, $vars[0].‘ ‘.date(‘Y-m-d H:i:s‘,time())."\n",FILE_APPEND); }


php小代码(1)

标签:php

原文地址:http://quietnight.blog.51cto.com/7163892/1678574

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!