php
php相关心得体会。技术交流
tang1jun
这个作者很懒,什么都没留下…
展开
-
php写入日志到文件
/** * 写入日志 * * @param [type] $values * @param string $dir * @return void */function log2txt($values, $dir = 'lyj'){ // 如果数据是数组则转换成字符 if (is_array($values)) { $values = print_r($values, true); } else if(is_object($values)){原创 2022-01-26 14:43:09 · 813 阅读 · 0 评论 -
php 订单报价的所有最小值集合
$arr = [ [ 'order_id' => 1, 'total_price' => 225.56, ], [ 'order_id' => 1, 'total_price' => 456.56, ], [原创 2021-06-04 11:43:02 · 176 阅读 · 1 评论 -
php 创建目录
$docPngPath = "./Public/uploads/imgtopdf/" . date("Ymd") . "/"; try { // 路径不存在则创建 !is_dir($docPngPath) && mkdir($docPngPath, 0777, true); } catch (\Exception $e) { dump($e); return false; } ...原创 2021-04-15 11:42:23 · 266 阅读 · 0 评论 -
tp5 中No input file specified 问题解决
.htaccess文件<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]</IfModule>修改成:<IfMo.原创 2021-01-12 17:30:08 · 246 阅读 · 0 评论 -
git命令创建 tp5.1版本项目 (基于gitee仓库)
进入工程目录下 执行(tp5 为项目名称 可以自定义)应用git clone -b 5.1 https://gitee.com/liu21st/thinkphp.git tp5 进入 tp5 目录 执行核心git clone -b 5.1 https://gitee.com/liu21st/framework.git thinkphp原创 2021-01-12 16:28:28 · 320 阅读 · 0 评论 -
api接口文档
增加视频记录简要描述:增加视频记录请求域名 : 请求url:route=member.shopvideo.addMyvideo参数:参数名是否必须说明title是标题url是云地址description是描述is_recommand是是否推荐 :1返回示例:正确时返回:{ "resu...原创 2020-05-07 10:56:43 · 613 阅读 · 0 评论 -
git 提交指定文件
进入你要操作的目录git status ./ git add ./* git commit -m "日志描述" ./ git push原创 2020-04-25 12:35:19 · 1658 阅读 · 0 评论 -
git clone 远程指定分支
git clone 远程指定分支git clone -b <指定分支名> <远程仓库地址>git clone -b 5.1 https://gitee.com/liu21st/thinkphp.git原创 2020-04-25 12:33:32 · 2180 阅读 · 0 评论 -
php curl 模拟post提交
模拟post提交,用于测试/** * 模拟post进行url请求 * @param string $url * @param string $param */function request_post($url = '', $param = '') { if (empty($url) || empty($param)) { return false;...原创 2018-08-08 17:35:30 · 1065 阅读 · 0 评论 -
composer安装图解
1、下载地址https://www.phpcomposer.com/2、安装步骤 安装如下图所示: 点击下一步 至 完成 验证是否安装完成原创 2018-07-25 11:07:31 · 305 阅读 · 0 评论 -
php函数整理
一、日期时间/** * @title 计算时间差 * @author lyj [author] [2018-06-07] * @param [type] $datetimeStr1 [日期时间字符串1] * @param [type] $datetimeStr2 [日期时间字符串2] * @return [type] [返回秒数] */fun...原创 2018-06-28 11:12:04 · 359 阅读 · 1 评论 -
php 清空文件夹
/** * @title 清空文件夹 * @author lyj [author] [2018-06-25] * @param [type] $path [description] * @return [type] [description] */function deldir($path){ //如果是目录则继续 if(is_dir($path)){...原创 2018-06-28 02:43:48 · 1152 阅读 · 0 评论