#f = open("yesterday2",'r+',encoding="utf-8") #文件句柄 读写#f = open("yesterday2",'w+',encoding="utf-8") #文件句柄 写读#f = open("yesterday2",'a+',encoding="utf- ...
分类:
其他好文 时间:
2018-01-01 18:14:54
阅读次数:
125
If you focus on what you left behind you will never see what lies ahead. 如果你只顾回头看,那么你永远也看不见前方有什么。 Yesterday is the past, the future is yet to come, th ...
分类:
其他好文 时间:
2017-12-30 23:42:01
阅读次数:
316
git init # 初始化本地git仓库(创建新仓库) git config --global user.name "xxx" # 配置用户名 git config --global user.email "xxx@xxx.com" ... ...
分类:
其他好文 时间:
2017-12-28 11:38:55
阅读次数:
220
#!usr/bin/env python# -*- coding:utf-8 -*-__author__ = "Samson"#默认以只读方式打开f1 = open("yesterday", encoding="utf-8")for i in range(3): print(f1.readline( ...
分类:
编程语言 时间:
2017-12-18 01:28:46
阅读次数:
237
Yesterday, my teacher taught me about bit operators: and (&), or (|), xor (^). I generated a number table a[N], and wrote a program to calculate the m ...
分类:
其他好文 时间:
2017-12-07 18:50:34
阅读次数:
241
#获取昨日的日期import datetimenow_time = datetime.datetime.now()yesterday_time = now_time + datetime.timedelta(days=-1)yesterday_time_nyr = yesterday_time.strftime('%Y%m%d')#格式化输出……此处省略数据源的读取,直接给出写入文
分类:
其他好文 时间:
2017-12-07 16:01:58
阅读次数:
122
将以下代码放到 api/count.php 文件最后 的 ?>之前 这样就行了.然后记得修改文字发布需要审核才能通过,不然发出去直接就通过了.另外就是发布时间要设置为未来的时间,这样才能定时.不是严格意义上的定时发布,当有用户访问你的内容页时,触发了内容页的 js,就会执行上面的通过审核代码.注意, ...
分类:
其他好文 时间:
2017-12-06 17:54:59
阅读次数:
153
9.1文件操作流程 1.打开文件,得到文件句柄并赋值给一个变量 2.通过句柄对文件进行操作 3.关闭文件 9.2 文件读写及关闭操作 #!Author:lanhan#data = open("yesterday",encoding="utf-8").read()#f = open("yesterda ...
分类:
编程语言 时间:
2017-11-26 15:03:35
阅读次数:
173
date_default_timezone_set('PRC');//设置中华人民共和国标准时间 strtotime — 将任何英文文本的日期时间描述解析为 Unix 时间戳 格式:int strtotime ( string $time [, int $now ] ) 本函数预期接受一个包含美国英 ...
分类:
Web程序 时间:
2017-11-23 11:03:14
阅读次数:
1374
var mydate = new Date(); var yester = mydate-24*60*60*1000; var yesterday = new Date(); yesterday.setTime(yester); var str = "" + yesterday.getFullYea... ...
分类:
Web程序 时间:
2017-11-10 15:16:17
阅读次数:
166