分类 代码 下的文章

压缩

import subprocess

addzip = subprocess.Popen('7z.exe a -t7z "压缩文件.7z" "要打包的文件" -r -p密码 -mx=9 -m0=LZMA2 -ms=10m -mf=on -mhc=on -mmt=on')
# 压缩文件为7z格式,使用最高压缩强度,开启多线程

addzip.wait()
# 等待进程结束,防止压缩未完成就继续执行之后的命令

解压

import subprocess

unzip = subprocess.Popen('7z.exe x "压缩文件.7z" -o"输出路径" -aoa -p密码')
# 解压缩文件

unzip.wait()
# 等待进程结束,防止压缩未完成就继续执行之后的命令

import zipfile

zipfile.is_zipfile('压缩文件')
# 检查文件是否是zip压缩包

file = zipfile.ZipFile('压缩文件')
# 打开压缩文件

file = zfile.extractall(path='解压路径',pwd=str("密码").encode("ascii"))
# 解压文件,zipfile只支持传入byte类型密码,不能直接传入字符串

newZip = zipfile.ZipFile('压缩文件名', 'w')
# 打开/创建文件,w指以写入方式打开

newZip.write('要写入的文件', compress_type=zipfile.ZIP_DEFLATED)
# 写入文件

newZip.close()
# 关闭文件

使用pyinstaller即可,首先安装pyinstaller

pip install pyinstaller

打开Python文件所在目录,执行以下命令,进行打包


pyinstaller test.py
# 打包"test.py"
# 可使用参数有:
# -i Img 指定文件图标
# -F 打包为单个文件 | -D 打包为一个目录
# -w 隐藏控制台窗口 | -c 显示控制台窗口
# -d 打包Debug版本 | -a 不包含Unicode字符集支持
# -o Dir 指定spec文件的生成目录 | -n Name 指定项目名与生成spec文件名,默认为第一个脚本的文件名

#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;
    }
}

可使用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

class_exists($className, $autoLoad)函数可检测类是否存在,参数$className为类名,需要使用完整命名空间,参数$autoLoad为是否允许自动加载,非必填,默认为true,函数返回Bool值。

method_exists($className, $methodName)函数可检测方法是否存在,参数$className可以为类名也可以为类的对象,参数$methodName为要检测的方法名,函数返回Bool值。

property_exists($className, $propertyName)函数可检测属性是否存在,参数$className可以为类名也可以为类的对象,参数$propertyName为要检测的属性名,函数返回Bool值。