02 2023 档案
摘要:1.下载PHPEXCEL拓展包:https://codeload.github.com/PHPOffice/PHPExcel/zip/1.8 2.PHP文件 <?php header("content-type:text/html;charset=utf8"); include './Classes
阅读全文
摘要:/** * 中间加密 字符串截取法 */ function encryptTel1($tel1) { $new_tel = substr($tel, 0, 3).'****'.substr($tel, 7); return $new_tel; } /** * 中间加密 替换字符串的子串 */ fun
阅读全文