date ()
a: "am"或是"pm"
A: "AM"或是"PM"
d: 几日,两位数字,若不足则补零;从"01"至"31"
D: 星期几,3个英文字母,如:"Fri"
F: 月份,英文全名,如:"January"
a: "am"或是"pm"
A: "AM"或是"PM"
d: 几日,两位数字,若不足则补零;从"01"至"31"
D: 星期几,3个英文字母,如:"Fri"
F: 月份,英文全名,如:"January"
2018-03-16
$str_string1 = "A:'Who are you?'";
$str_string2 = 'B:"I\'m a dog."';
$str_string3 = "A:\"You are a boy!\"";
$str_string4 = 'B:\'Where is she?\'';
$str_string2 = 'B:"I\'m a dog."';
$str_string3 = "A:\"You are a boy!\"";
$str_string4 = 'B:\'Where is she?\'';
2018-03-16
缺少了一个msvcr100.ll文件的朋友要装Visual C++ 2012(update 4), 32位系统装32的,64位的装32跟64两个.
2018-03-16
ceil(x) 返回不小于 x 的下一个整数,x 如果有小数部分则进一位。ceil() 返回的类型仍然是 float,因为 float 值的范围通常比 integer 要大。
2018-03-13