[TOC]
## 日期
> 注意“加减时”的当前时间数。
```php
date('Y-m-d H:i:s',strtotime('+1 day')); # 明日此时 (加减的都是此时,英文的都是零时)
date('Y-m-d H:i:s',strtotime('today 00:00:00')); # 今日零时
date('Y-m-d H:i:s',strtotime('next Thursday')); # 下周四零时
// year(年),month(月),hour(小时)minute(分),second(秒)
date('Y-m-d H:i:s',strtotime("+1 day +1 hour +1 minute")); # 一天一小时一分以后
date("Y-m-d H:i:s",strtotime("yesterday")); # 昨天零时
date("Y-m-d",strtotime("-2 day")); # 两天之前
date('Y-m-d H:i:s',strtotime('+1 week')); # 下周此时
strtotime('+1 year',$dtStart); # 指定时间的1年后
// 第一天和最后一天
function getthemonth($date)
{
$firstday = date('Y-m-01', strtotime($date));
$lastday = date('Y-m-d', strtotime("$firstday +1 month -1 day"));
return array($firstday, $lastday);
}
/**
* 时间差计算
* @param Timestamp $time
* @return String Time Elapsed
* @author Shelley Shyan
* @copyright http://phparch.cn (Professional PHP Architecture)
*/
function time2Units($time)
{
$year = floor($time / 60 / 60 / 24 / 365);
$time -= $year * 60 * 60 * 24 * 365;
$month = floor($time / 60 / 60 / 24 / 30);
$time -= $month * 60 * 60 * 24 * 30;
$week = floor($time / 60 / 60 / 24 / 7);
$time -= $week * 60 * 60 * 24 * 7;
$day = floor($time / 60 / 60 / 24);
$time -= $day * 60 * 60 * 24;
$hour = floor($time / 60 / 60);
$time -= $hour * 60 * 60;
$minute = floor($time / 60);
$time -= $minute * 60;
$second = $time;
$elapse = '';
$unitArr = [
'年' => 'year' ,
'个月' => 'month' ,
'周' => 'week' ,
'天' => 'day' ,
'小时' => 'hour' ,
'分钟' => 'minute' ,
'秒' => 'second'
];
foreach ($unitArr as $cn => $u) {
if ($$u > 0) {
$elapse = $$u . $cn;
break;
}
}
return $elapse;
}
$startTime = strtotime('2018-8-11 15:30:21');
$time = time() - $startTime;
echo time2Units($time); // 5分钟
```
### date类库
```php
// 获取当前系统时间
$date = new DateTime();
$date->format('Y-m-d H:i:s');
//2、获取特定时间并打印,同date(strtotime)一样,英文的都到零时,加减的都是
$date2 = new DateTime('tomorrow');
$date2->format('Y-m-d H:i:s'); # 明日零时
$date2 = new DateTime('next Thursday');
$date2->format('Y-m-d H:i:s'); # 下周四零时
$date2 = new DateTime('+1 days');
$date2->format('Y-m-d H:i:s'); # 明日此时
$date = new DateTime();
$date->add(new DateInterval('P1Y')); // 一年后,
$date->format('Y-m-d H:i:s');
$date->modify('+1 day');
$date->format('Y-m-d H:i:s');
$date->setDate('1989','11','10');
$date->format('Y-m-d H:i:s'); // 某天此时
//3. unix时间戳的转换
$date = new DateTime();
$date->format('U'); // 当前时间搓
$date->getTimestamp(); // 当前时间搓
$date->setTimestamp(1408950651);
$date->format('Y-m-d H:i:s');
//4. 日期的比较
$date1 = new DateTime();
$date2 = new DateTime('2016-12-15');
$date1 < $date2 ? '大' : '小';
$date1 = new DateTime();
$date2 = new DateTime('2018-8-10');
$diff = $date1->diff($date2);
//5. 两个日期相差多少天
$interval = date_diff(date_create($startDate), date_create($endDate));
$interval->days;
//格式化输出
echo $diff->format("The future will come in %Y years %m months and %d days");
// 生成每一天
$start = new \DateTime(date('Y-m-01',strtotime($item['the_start_date'])));
$end = new \DateTime('2021-12-10');
$interval = \DateInterval::createFromDateString('1 month');
$period = new \DatePeriod($start, $interval, $end);
foreach ($period as $dt) {}
```
~~~
// 构造函数参数 string $interval_spec,创建新的DateInterval对象
$datetime = new DateTime('2019-07-14 14:00:00');
$interval = new DateInterval('P2W'); //P2W 表示两周,14天
dump($interval);
object(DateInterval)#227 (16) {
["y"] => int(0)
["m"] => int(0)
["d"] => int(14)
["h"] => int(0)
["i"] => int(0)
["s"] => int(0)
["f"] => float(0)
["weekday"] => int(0)
["weekday_behavior"] => int(0)
["first_last_day_of"] => int(0)
["invert"] => int(0)
["days"] => bool(false)
["special_type"] => int(0)
["special_amount"] => int(0)
["have_weekday_relative"] => int(0)
["have_special_relative"] => int(0)
}
// DateTime类的add方法:向DateTime对象添加天数、月数、年数、小时数、分钟数和秒数
$datetime->add($interval);
echo $datetime->format('Y-m-d H:i:s'); //加14天, 2019-07-28 14:00:00
// DateTime类的sub方法:从DateTime对象中减去天、月、年、小时、分钟和秒
$datetime->sub($interval); //减14天, 2019-07-14 14:00:00
echo $datetime->format('Y-m-d H:i:s');
// DateTime类的diff方法:返回表示为DateInterval的两个DateTime对象之间的差异。返回DateInterval对象
$date1 = new DateTime("2019-11-04");
$date2 = new DateTime("2019-11-05");
$diff_interval = $date1->diff($date2);
dump($diff_interval);
// DateInterval 的format方法,格式参考‘DateInterval的format格式化参数’
echo $diff_interval->format('%R%a days'); // +1 days
// DateInterval:根据字符串创建DateInterval对象
// 以下每组的运行结果都相等
$i = new DateInterval('P1D');
$i = DateInterval::createFromDateString('1 day');
$i = new DateInterval('P2W');
$i = DateInterval::createFromDateString('2 weeks');
$i = new DateInterval('P3M');
$i = DateInterval::createFromDateString('3 months');
$i = new DateInterval('P4Y');
$i = DateInterval::createFromDateString('4 years');
$i = new DateInterval('P1Y1D');
$i = DateInterval::createFromDateString('1 year + 1 day');
$i = new DateInterval('P1DT12H');
$i = DateInterval::createFromDateString('1 day + 12 hours');
$i = new DateInterval('PT3600S');
$i = DateInterval::createFromDateString('3600 seconds');
~~~
构造函数参数 string $interval\_spec 如:P2W。格式以字母P开头,每个持续时间段由一个整数值表示,后跟一个周期标志符。 如果持续时间包含时间元素(表中的HMS),则在规范的该部分之前加上字母T。
| 周期标志符 | 描述 |
| --- | --- |
| *Y* | 年 |
| *M* | 月 |
| *D* | 日 |
| *W* | 周。这些被转换成天,所以不能与\*D组合\*. |
| *H* | 小时 |
| *M* | 分钟 |
| *S* | 秒 |
### Carbon
1. [官方文档](https://carbon.nesbot.com/docs/)
2.
## 金额
### 显示
```php
number_format(1000000,2); # 1,000,000.00
number_format(10000003.1485926,2); # 10,000,003.15 小数点使用了四舍五入
echo substr(number_format(10000003.1485926,3), 0 ,-1); # 10,000,003.14 不四舍五入
sprintf("%.2f",round($price,2))
```
### 计算
> PHP有精度运算bug,所以凡是精度运算,**特别是电商类价格运算**,都要使用扩展 `bcmatch`
> 另外,PHP7.3以前的round会有精度问题,需要再php.ini设置serialize\_precision = -1
#### 安装
```bash
php -m | grep bcmath # 如果没有
pecl install bcmath
```
#### 使用
```php
// 将两个高精度数字相加
string bcadd(string left operand, string right operand [, int scale]);
// 比较两个高精度数字,返回-1, 0, 1
int bccomp(string left operand, string right operand [, int scale]);
// 将两个高精度数字相除
string bcdiv(string left operand, string right operand [, int scale]);
// 将两个高精度数字相减
string bcsub(string left operand, string right operand [, int scale]);
// 求高精度数字余数
string bcmod(string left operand, string modulus);
// 将两个高精度数字相乘
string bcmul(string left operand, string right operand [, int scale]);
// 求高精度数字乘方
string bcpow(string x, string y [, int scale]);
// 配置默认小数点位数,相当于就是Linux bc中的”scale=”
string bcscale(int scale);
// 求高精度数字平方根
string bcsqrt(string operand [, int scale]);
```
```php
// 左 - 右 保留两位小数,结果无千分位格式
$res=bcsub(33344134.7,52.5,2);
echo $res;
```
- 现代化PHP特性
- php7常用特性整理
- 反射机制Reflection
- 依赖注入与服务容器
- 抽象类与接口
- 类多继承的替代方案Traits
- 类的延迟绑定(后期绑定)
- 生成器语法
- 匿名函数和闭包
- 匿名类
- 理解php的output buffer
- 断言ASSERT
- 魔术方法小结
- Zend Opcache字节码缓存
- 内置的http服务器
- SPL标准库
- 【SPL标准库专题(1)】SPL简介
- 【SPL标准库专题(2)】Iterator
- 【SPL标准库专题(3)】Classes
- 【SPL标准库专题(4)】Exceptions
- 【SPL标准库专题(5)】Datastructures:SplDoublyLinkedList
- 【SPL标准库专题(6)】Datastructures:SplStack & SplQueue
- 【SPL标准库专题(7)】Datastructures:SplPriorityQueue
- 【SPL标准库专题(8)】Datastructures:SplHeap & SplMaxHeap & SplMinHeap
- 【SPL标准库专题(9)】Datastructures:SplFixedArray
- 【SPL标准库专题(10)】Datastructures:SplObjectStorage
- PHPcomposer使用手札[ing]
- PHP中的多态
- 通过命名空间实现自动加载的框架雏形
- 日期与金额
- PHPstorm使用攻略
- 笔记本