12 2020 档案
摘要:1,生成证书 $config = [ 'config' => dirname(__FILE__) . '/openssl.cnf', // 定位至你的openssl.cnf文件 'digest_alg' => 'SHA512', // openssl_get_md_methods() 的返回值是可以
阅读全文
摘要:function copyText(text) { var input = document.createElement('input'); input.setAttribute('id', 'input_for_copyText'); input.value = text; document.ge
阅读全文
摘要:/** * xmsb_implode 将一个多维数组转为保留层级关系的字符串 * 参数1:数组之间的连接符 * 参数2:需要转为字符串的数组 * 参数3:上级数组的键名,默认留空 */ function xmsb_implode($glue, $pieces, $parentKey = '') {
阅读全文
摘要:1,打开windows命令行窗口 2,输入命令: for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan show pro
阅读全文