随笔分类 - [02]PHP
摘要:php74 /opt/homebrew/bin/composer install --ignore-platform-reqs
阅读全文
摘要:搜索 brew search php 安装 brew install php@5.6 brew install php@7.4 创建目录 cd ~/ mkdir php_program cd php_program mkdir bin 创建软连接 ln -s /opt/homebrew/opt/ph
阅读全文
摘要:$md5_file = md5_file('https://xxx.apk'); // 运行一次太费时间了 本地,远程都支持。
阅读全文
摘要:$file = file_get_contents('https://xxx.apk'); // 运行一次太费时间了 $size = strlen($file);
阅读全文
摘要:/* * 根据身份证号,获取性别 * string $idcard 完整的身份证号 * 0未知 * 1男 * 2女 */ public static function getSexById($idcard){ if (!Verify::checkIDCard($idcard)) { return 0
阅读全文
摘要:通过git log 找长名字。 直接使用短名字都可以。
阅读全文
摘要:/** * 验证其他身份证号,港澳台身份证 * @param $IDCard * @return bool */ public static function checkOtherIDCard($IDCard) { $IDCard = strtoupper($IDCard); $IDCard = s
阅读全文
摘要:$phone = $this->input_data['phone']; // 成员数 $member_count = $user_customer_village->where(['house_id' => $house_id])->count(); if ($role RoleEnum::HOS
阅读全文
摘要:$User = M("User"); // 实例化User对象 $map['name|title'] = 'thinkphp'; // 把查询条件传入查询方法 $User->where($map)->select(); $User = M("User"); // 实例化User对象 $map['na
阅读全文
摘要:![](https://img2020.cnblogs.com/blog/422101/202107/422101-20210729142211752-962652182.png) ![](https://img2020.cnblogs.com/blog/422101/202107/422101-20210729142239015-650822132.png)
阅读全文
摘要:composer require qiniu/php-sdk 工具类 <?php /** * 七牛云,工具类 */ namespace Common\Util; use Qiniu\Config; use Qiniu\Storage\BucketManager; use Qiniu\Storage\
阅读全文
摘要:ini_set("memory_limit","-1");
阅读全文
摘要:header('Content-type: text/html; charset=utf-8'); $origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP_ORIGIN'] : ''; //header('Access-Control-Al
阅读全文
摘要:我的应用是nginx+php。 是因为php没有及时回应nginx,导致错误。 这个时候重启nginx,没有效果。 重启php才有效果。 brew services restart php@5.6
阅读全文
摘要:配置数据库 return array( //数据库配置信息 'DB_TYPE' => 'mysql', // 数据库类型 'DB_HOST' => $db_host, // 服务器地址 'DB_NAME' => $db_name, // 数据库名 'DB_USER' => $db_user, //
阅读全文
摘要:/** * 初始化车辆信息 */ public function initCar() { $car = M('car'); $edit_data = [ 'begin_date' => '2020-01-01 00:00:00', ]; $flag = $car->where(['begin_dat
阅读全文
摘要:<?php /** * 文件工具类 */ namespace Common\Util; class FileUtil extends CommonUtil { /** * @param $file * @return bool */ public static function check_file
阅读全文
摘要:<?php namespace Common\Enum; class RoleEnum { const HOST = 0; const MEMBER = 1; const FRIEND = 2; const RENT = 3; const OTHER = 4; public static $data
阅读全文
摘要:// 全局通用日志工具 function setlog($param = [],$result = [],$name='',$filename = '',$path = ''){ if (!$path) { $path = BASE_PATH.'../logs/'; } if (!$filename
阅读全文
摘要:Mac 自定义可执行脚本 新建文件夹sh mkdir sh 创建自定义sh touch pull.sh touch push.sh 写入内容 #!/bin/bash # 一次性处理git拉取 #branch_name=`git symbolic-ref --short -q HEAD` branch
阅读全文