我想在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);
答案 0 :(得分:2)
chmod
。在您的脚本中,粘贴以下代码:
$ fh = fopen(“log.txt”,“a +”);
fwrite($ fh,date(“Y-m-d g:i a”)。“\ r \ n”);
FCLOSE(FH $);
答案 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>