我在这里有一个问题。我需要通过使用Yii2来获得两个月之间的差异。我知道我应该使用diff
和format it in months
,但它不起作用。有人可以帮我解决问题吗?
以下是我需要计算月份差异的行:
$holidays = 'floor(datediff(curdate(), employment_date))';
感谢您的帮助
答案 0 :(得分:1)
@Vincent Savard已经an good answer了。这有两行:
#!/bin/bash
sudo su
yum update -y
yum install httpd -y
yum install ruby
yum install aws-cli
cd ~
aws s3 cp s3://aws-codedeploy-us-east-1/latest/install . --region us-east-1
chmod +x ./install
./install auto
echo 'hello world' > /var/www/html/index.html
hostname >> /var/www/html/index.html
chkconfig httpd on
service httpd start
答案 1 :(得分:1)
由于您使用的是mysql,因此可以使用TIMESTAMPDIFF:
$holidays = '(TIMESTAMPDIFF(MONTH, employment_date, curdate()))';