#include <stdio.h>
#include <stdlib.h>

//日期结构体
typedef struct Date
{
    int year;
    int month;
    int day;
}Date;

/**
 * 主函数
 */
int main()
{
    //声明开始日期与结束日期变量
    Date start, stop;

    //声明结果变量
    int day;

    //再次计算
    replay:
    
    //清空数据
    day = 0;
    start.year = 0; start.month = 0; start.day = 0;
    stop.year = 0; stop.month = 0; stop.day = 0;

    //输入开始日期,保存至结构体变量
    printf("请输入开始日期(格式为:2002-10-29):");
    scanf("%d-%d-%d", &start.year, &start.month, &start.day);

    //验证日期是否正确
    if(start.month < 1 || start.month > 12){
        printf("输入月份范围有误。\n");
        system("pause");
        goto replay;
    }
    if(start.day < 1){
        printf("输入日期范围有误。\n");
        system("pause");
        goto replay;
    }
    if(start.month == 2){
        if(isLeapYear(start.year)){
            if(start.day > 29){
                printf("%d年为闰年,2月日期不可大于29日。\n", start.year);
                system("pause");
                goto replay;
            }
        }else{
            if(start.day > 28){
                printf("%d年非闰年,2月日期不可大于28日。\n", start.year);
                system("pause");
                goto replay;
            }
        }
    }else{
        if(start.day > getMonthDay(start.month)){
            printf("输入日期有误,%d年%d月仅有%d天。\n", start.year, start.month, getMonthDay(start.month));
            system("pause");
            goto replay;
        }
    }

    //输入结束日期,保存至结构体变量
    printf("请输入结束日期(格式为:2002-10-29):");
    scanf("%d-%d-%d", &stop.year, &stop.month, &stop.day);

    //验证日期是否正确
    if(stop.month < 1 || stop.month > 12){
        printf("输入月份有误。\n");
        system("pause");
        goto replay;
    }
    if(stop.day < 1){
        printf("输入日期有误。\n");
        system("pause");
        goto replay;
    }
    if(stop.month == 2){
        if(isLeapYear(stop.year)){
            if(stop.day > 29){
                printf("%d年为闰年,2月日期不可大于29日。\n", stop.year);
                system("pause");
                goto replay;
            }
        }else{
            if(stop.day > 28){
                printf("%d年非闰年,2月日期不可大于28日。\n", stop.year);
                system("pause");
                goto replay;
            }
        }
    }else{
        if(stop.day > getMonthDay(stop.month)){
            printf("输入日期有误,%d年%d月仅有%d天。\n", stop.year, stop.month, getMonthDay(stop.month));
            system("pause");
            goto replay;
        }
    }
    
    //检查日期并分别处理
    if(start.year > stop.year){
        //开始年大于结束年,调用计算函数
        day = dateDiff(stop, start);
    }else if(start.year == stop.year){
        //开始年与结束年相等,进一步判断月份
        if(start.month > stop.month){
            //开始月大于结束月,调用计算函数
            day = dateDiff(stop, start);
        }else if(start.month == stop.month){
            //开始月等于结束月,直接计算差额
            if(start.day < stop.day){
                //开始日小于结束日,更换参数顺序计算
                day = stop.day - start.day;
            }else{
                //直接计算结果
                day = start.day - stop.day;
            }
        }else{
            //开始月小于结束月,更换参数顺序计算调用计算函数
            day = dateDiff(start, stop);
        }
    }else{
        //开始年小于结束年,更换参数顺序计算调用计算函数
        day = dateDiff(start, stop);
    }

    //输出计算结果
    printf("输入日期差额为:%d天\n", day);

    //输出按任意键继续,以便查看结果
    system("pause");

    //跳回开头再次计算
    goto replay;

    //返回结果(不会被执行)
    return day;
}

/**
 * 日期差计算
 */
int dateDiff(Date start, Date stop)
{
    //声明结果变量
    int diffDay = 0;
    
    //兼容C89标准,在for以外声明变量
    int y,m; 

    //加入尾年尾月天数
    diffDay = stop.day;

    //加入首年首月天数
    if(isLeapYear(start.year) && start.month == 2){
        //首年为闰年且首月为2月进一步判断
        if(start.day < 29){
            diffDay = 29 - start.day + diffDay;
        }
    }else{
        //首年非闰年正常计算
        diffDay = getMonthDay(start.month) - start.day + diffDay;
    }

    if(start.year == stop.year){
        //一年内日期差计算

        //如果开始与结束月份非相邻月,循环加入中间月份天数
        if((stop.month - start.month) > 1){
            for(m = start.month + 1; m < stop.month; m = m+1){
                diffDay = diffDay + getMonthDay(m);
            }
            //闰年且开始月到结束月之间(不含本身)存在2月时差值加1
            if(isLeapYear(start.year) && start.month == 1 && stop.month > 2){
                diffDay = diffDay + 1;
            }
        }

        return diffDay;
    }else{
        //多年日期差计算

        //考虑不同年份但为相邻月份的特殊情况
        if(start.year - stop.year == 1 && start.month == 12 && stop.month == 1){
            return diffDay;
        }else{
            //累计添加每年每月的天数
            for(y = start.year; y <= stop.year; y = y+1){
                //计算中间月份天数
                if(y == start.year){
                    //多年计算中的首年,不计算首年首月,所以循环初始值+1
                    for(m = start.month + 1; m <= 12; m = m+1){
                        diffDay = diffDay + getMonthDay(m);
                    }
                    //闰年且开始月为1月的差值加1
                    if(isLeapYear(y) && start.month == 1){
                        diffDay = diffDay + 1;
                    }
                }else if(y == stop.year){
                    //多年计算的尾年,不计算尾年尾月,所以结束条件不加等于
                    for(m = 1; m < stop.month; m = m+1){
                        diffDay = diffDay + getMonthDay(m);
                    }
                    //闰年且结束月为2月以后的差值加1
                    if(isLeapYear(y) && stop.month > 2){
                        diffDay = diffDay + 1;
                    }
                }else{
                    //中间年,1-12月全计
                    for(m = 1; m <= 12; m = m+1){
                        diffDay = diffDay + getMonthDay(m);
                    }
                    //闰年差值额外加1
                    if(isLeapYear(y)){
                        diffDay = diffDay + 1;
                    }
                }
            }
            return diffDay;
        }
    }
}

/**
 * 判断是否闰年
 */
int isLeapYear(int year)
{
    if(year%400 == 0){
        return 1;
    }else{
        if(year%4 == 0 && year%100 != 0){
            return 1;
        }else{
            return 0;
        }
    }
}

/**
 * 获取月份天数
 */
int getMonthDay(int month)
{
    if(month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12){
        return 31;
    }else if(month == 4 || month == 6 || month == 9 || month == 11){
        return 30;
    }else if(month == 2){
        //闰年多的一天在循环中判断添加,在此不做判断
        return 28;
    }else{
        return -1;
    }
}

制作自动安装Appx的自解压时遇到的问题,.ps1文件无法直接运行,就想到可以用cmd调用.ps1文件,测试显示无法执行。
查询后发现可以直接执行PowerShell命令,这么写反而省事了。

powershell -command "PowerShell命令"
//在命令提示符控制台执行或批处理文件中写

换过显卡的A1286安装Windows10后遇到的问题,联网自动安装显卡驱动后系统死机重启,进入安全模式卸载显卡驱动后恢复正常,但系统会再次自动安装。

Win+R打开运行,输入gpedit.msc打开组策略编辑器
从左侧依次打开:计算机配置 -> 管理模板 -> Windows 组件 -> Windows 更新(此项双击打开),再从右侧列表中找到Windows更新不包括驱动程序,双击打开,选择"已启用"并确定。

可使用array_merge()函数或array_merge_recursive()函数。
两函数用法相同,均为将多个数组作为参数传入,如:array_merge($arr1, $arr2, $arr3, $arr4)
区别在于array_merge()函数键值冲突时后面的会覆盖前面的,array_merge_recursive()函数键值冲突时会将冲突部分合并为新数组。

举个例子:

<?php
$arr1 = ['a'=>1, 'b'=>2];
$arr2 = ['b'=>3, 'c'=>4];
print_r(array_merge($arr1, $arr2));
//结果为:Array([a] => 1 [b] => 3 [c] => 4)

print_r(array_merge_recursive($arr1, $arr2));
//结果为:Array([a] => 1 [b] => Array([0] => 2 [1] => 3) [c] => 4)

print_r(array_merge([0, 1, 2], [0, 1, 2]));
//结果为:Array([0] => 0 [1] => 1 [2] => 2 [3] => 0 [4] => 1 [5] => 2)

break与continue语句均可用于跳出循环,区别在于:
continue跳出本次循环,但此循环语句会继续。
break跳出此循环语句,但外面嵌套(如果有)的循环语句仍然会继续。

举个例子:

<?php
$arr = [0, 1, 2, 3];

foreach($arr as $row){
    foreach($arr as $num){
        if($num === 2){
            break;
        }else{
            echo $num;
        }
    }
}
//输出结果为:01010101

foreach($arr as $row){
    foreach($arr as $num){
        if($num === 2){
            continue;
        }else{
            echo $num;
        }
    }
}
//输出结果为:013013013013

使用函数如下:
ucwords():将每个单词首字母转换为大写。
ucfirst():将第一个单词首字母转为大写。
lcfirst():将第一个单词首字母转为小写。
strtoupper():将所有字母转为大写。
strtolower():将所有字母转为小写。

echo ucwords("hello world");
//Hello World

echo ucfirst("hello world");
//Hello world

echo lcfirst("HELLO WORLD");
//hELLO WORLD

echo strtoupper("hello world");
//HELLO WORLD

echo strtolower("HELLO WORLD");
//hello world