Johny的记忆生活

展开菜单

certbot申请泛域名证书及自动续签

certbot申请泛域名证书及自动续签
1、获取certbot-autowget   chmod a+x ./certbot-auto ./certbot-auto --help2、生成证书./certbot-auto --server https://acme-v02.api.letsencrypt.org/directory -d "chennick.wang" -d "...

PHP下划线转驼峰转换方法

PHP下划线转驼峰转换方法
下划线转驼峰方法function camelize($uncamelizedWords,$separator='_') {     $uncamelizedWords = $separator. str_replace($separator, " ", strtolower($uncamelizedWords)); &...

PHP函数之Calendar

PHP函数之Calendar
日历扩展包含了简化不同日历格式间的转换的函数,函数描述cal_days_in_month()针对指定的年份和历法,返回一个月中的天数。cal_from_jd()把儒略日计数转换为指定历法的日期。cal_info()返回有关指定历法的信息。cal_to_jd()把指定历法的日期转换为儒略日计数。easter_date()返回指定年份的复活节午夜的 Unix 时间戳。easter_days()返回指定年份的复活节与 3 月 21 日之间的天数。frenchtojd()把法国共和历...