如何在php执行

时间:2015-06-09 11:53:08

标签: php file time cron file-put-contents

我想在php文件上记录.txt文件的执行情况 我希望文件看起来像序列号:

1, (time)
2, (time)
3, (time)
. . . . .
. . . . .

其中(时间)是执行php文件的时间。

如何将序列号添加到每一行以及如何将每个条目放在下一行?

$today = date("Y-m-d H:i:s"); 
$file = fopen("log.txt","a+");
fwrite($file,$today);
fclose($file);

2 个答案:

答案 0 :(得分:2)

  1. 在服务器/计算机上创建文件,与放置PHP文件的位置相同。在此示例中,我们将其称为“log.txt”
  2. 执行必须执行的操作以使文件可写。对于此示例,您只需在Filezilla中右键单击它,然后选择“权限”,然后将其更改为777,或者Google如何使用chmod
  3. 在您的脚本中,粘贴以下代码:

    $ fh = fopen(“log.txt”,“a +”);

    fwrite($ fh,date(“Y-m-d g:i a”)。“\ r \ n”);

    FCLOSE(FH $);

  4. http://php.net/manual/en/function.fopen.php

    http://php.net/manual/en/function.fwrite.php

答案 1 :(得分:0)

由于您未提供任何代码,因此以下是您可以执行此操作的提示:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="match_parent"
             android:layout_height="wrap_content">

    <View android:layout_width="match_parent"
          android:layout_height="1dp"
          android:background="?android:attr/listDivider"/>

</FrameLayout>