随笔分类 -  [02]PHP

上一页 1 2 3 4 5 6 7 ··· 25 下一页
摘要:/** * 身份证号加星 */ public static function hiddenIdCard($idcard) { // 匹配 3到6位数字,配置8位数字,匹配1到4位数字 $result = preg_replace("/(\d{3,6})\d{8}(\d{1,4})/", "\$1** 阅读全文
posted @ 2021-06-16 15:30 TBHacker 阅读(255) 评论(0) 推荐(0) 编辑
摘要:安装 brew install redis % brew install redis ==> Downloading https://mirrors.cloud.tencent.com/homebrew-bottles/bottles/redis-6.2.4.arm64_big_sur ###### 阅读全文
posted @ 2021-06-07 14:11 TBHacker 阅读(2179) 评论(0) 推荐(0) 编辑
摘要:基础版本 # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; in 阅读全文
posted @ 2021-06-06 09:06 TBHacker 阅读(254) 评论(0) 推荐(0) 编辑
摘要:/** * 检测是否是时间戳 */ public static function checkTimestamp($timestamp) { if(!is_int($timestamp)) { return false; } if(strtotime(date('Y-m-d H:i:s',$times 阅读全文
posted @ 2021-06-01 16:13 TBHacker 阅读(1012) 评论(0) 推荐(0) 编辑
摘要://将用户名进行处理,中间用星号表示 function substr_cut($user_name){ //获取字符串长度 $strlen = mb_strlen($user_name, 'utf-8'); //如果字符创长度小于2,不做任何处理 if($strlen<2){ return $use 阅读全文
posted @ 2021-03-31 15:09 TBHacker 阅读(1424) 评论(0) 推荐(0) 编辑
摘要:/** * 查看通行证 */ public function viewPassCode() { $visitor_id = $this->input_data['visitor_id']; $customer_visitor = M('customer_visitor'); $customer_vi 阅读全文
posted @ 2021-03-30 18:57 TBHacker 阅读(69) 评论(0) 推荐(0) 编辑
摘要:需要签名比如:【阿里云】xxxx。 只有签名通过的,才可以发送。 需要创建短信模版。 支持验证码,以及各种自定义的消息模版。 新建模版,需要审核,审核通过才可以使用。 阿里云使用,需要配置key,secret。 php中可以先下载sdk。 composer require alibabacloud/ 阅读全文
posted @ 2021-03-09 18:14 TBHacker 阅读(515) 评论(0) 推荐(0) 编辑
摘要:阿里云接口 /** * 检测人脸 */ public function checkFace($idcard,$name,$img_base64) { $host = "https://zfah.market.alicloudapi.com"; $path = "/efficient/idfaceId 阅读全文
posted @ 2021-03-09 14:13 TBHacker 阅读(1928) 评论(0) 推荐(0) 编辑
摘要:/** * 获取网络图片的Base64编码 * $img_url 网络图片地址 * $hasPre 是否有前缀 * @return string */ public function imgToBase64($img_url,$hasPre = true) { $img_base64 = ''; $ 阅读全文
posted @ 2021-03-08 19:14 TBHacker 阅读(520) 评论(0) 推荐(0) 编辑
摘要:/** * 物业查看的用户列表 */ public function CustomerPageOfProperty() { // name: "" , page: 1 , phone: "" , size: 10 $name = $this->input_data['name']; $phone = 阅读全文
posted @ 2021-02-25 17:53 TBHacker 阅读(88) 评论(0) 推荐(0) 编辑
摘要:开启,并设置路由 <?php return array ( // 开启路由 'URL_ROUTER_ON' => true, 'URL_ROUTE_RULES'=>array( 'alf/serverConfig/time' => array('alf/serverConfig_time'), ), 阅读全文
posted @ 2021-02-04 10:54 TBHacker 阅读(299) 评论(0) 推荐(0) 编辑
摘要:需要软件 1、phpstudy (php环境,可以切换php版本) 2、git (拉取项目,提交代码) 3、xshell (链接线上服务器) 4、vscode (代码编辑器) 5、phpmyadmin (可以查看数据库) 阅读全文
posted @ 2021-01-04 16:51 TBHacker 阅读(205) 评论(0) 推荐(0) 编辑
摘要:public static function newCurl($url, $data = array(), $timeout = 5) { $ch = curl_init(); if (is_array($data) && $data) { $formdata = http_build_query( 阅读全文
posted @ 2020-09-16 17:03 TBHacker 阅读(1151) 评论(0) 推荐(0) 编辑
摘要:ini_set('memory_limit', '-1'); 阅读全文
posted @ 2020-09-09 09:38 TBHacker 阅读(428) 评论(0) 推荐(0) 编辑
摘要:<?php namespace Common\Helper; class PrizeHelper { /** * 抽取礼物 * $weight_list = [ * [ * 'id' => 1, * 'name' => '手机', * 'weight' => 100 * ], * [ * 'id' 阅读全文
posted @ 2020-09-02 11:50 TBHacker 阅读(189) 评论(0) 推荐(0) 编辑
摘要:如果不处理,很丑。 加上下面的代码,就会好看多了。 <script> // 初始化 wx.config({ debug: false, appId: '{$weixin.appId}', timestamp: '{$weixin.timestamp}', nonceStr: '{$weixin.no 阅读全文
posted @ 2020-08-29 16:01 TBHacker 阅读(1865) 评论(0) 推荐(0) 编辑
摘要:function get_client_ip() { $ip = $_SERVER['REMOTE_ADDR']; if (isset($_SERVER['HTTP_CLIENT_IP']) && preg_match('/^([0-9]{1,3}\.){3}[0-9]{1,3}$/', $_SER 阅读全文
posted @ 2020-08-28 17:55 TBHacker 阅读(137) 评论(0) 推荐(0) 编辑
摘要:@font-face { font-family: '锐字锐线怒放黑简'; src:url('https://xxx.com/锐字锐线怒放黑简1.0.ttf'); // src:url('/Wx/Index/font/锐字锐线怒放黑简1.0.ttf'); } body { font-family: 阅读全文
posted @ 2020-08-27 15:48 TBHacker 阅读(1520) 评论(0) 推荐(0) 编辑
摘要:<?php /** * Excel 助手 * sudo composer require phpoffice/phpspreadsheet */ namespace Common\Util; use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffic 阅读全文
posted @ 2020-08-19 14:45 TBHacker 阅读(462) 评论(1) 推荐(0) 编辑
该文被密码保护。
posted @ 2020-08-18 15:35 TBHacker 阅读(0) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 25 下一页