码迷,mamicode.com
首页 >  
搜索关键字:php array array_diff_ukey    ( 107130个结果
vue route 设置界面之间的过渡动效
解决问题: 1.切换路由时判断是前进还是后退 2.每次切换左右动画如何实现 方法: 在基于路由的动态过渡中,需要定义路由层级,在路由元信息中增加index标记层级 import Vue from 'vue' import VueRouter, { RouteConfig } from 'vue-ro ...
分类:其他好文   时间:2021-05-24 05:24:59    阅读次数:0
Bugku CTF_web4
1.打开网页,得到信息如下 2.打开hackbar,在body里传入post参数。 3.得到flag如下 4.主要考察post传参,和简单的php代码审计。 ...
分类:Web程序   时间:2021-05-24 04:45:46    阅读次数:0
git命令备忘
查看远程与本地所有分支 git branch -a 拉取远程分支到本地 git checkout -b '车管家' remotes/origin/车管家 切换分支 git checkout -f test ...
分类:其他好文   时间:2021-05-24 04:44:55    阅读次数:0
基于php的食堂管理系统源码+课程报告
下载地址:https://download.csdn.net/download/qq_31293575/18340399 项目介绍 基于php的食堂管理系统源码+课程报告 系统说明 饭堂消费管理系统由基于B/S 的PHP+ MySQL 开发,基本兼容IE6和Chrome, 开发环境是Windows ...
分类:Web程序   时间:2021-05-24 04:30:06    阅读次数:0
Array.prototype.shift()、Array.prototype.unshift()方法
1. Array.prototype.shift()方法 (1)定义:用于删除数组的第一个元素,并返回该元素。注意,该方法会改变原数组 1 var a = ['a', 'b', 'c']; 2 3 a.shift() // 'a' 4 a // ['b', 'c'] 上面代码中,使用shift()方 ...
分类:其他好文   时间:2021-05-24 04:13:41    阅读次数:0
【redis】PHPredis分页缓存方案
<?php /* * redis 分页数据类库 */ class redisPage{ protected $_redis; protected $_redis_ip = '127.0.0.1'; //ip protected $_redis_port = 6379; //端口 protected ...
分类:Web程序   时间:2021-05-24 04:07:35    阅读次数:0
java 集合1
1.Collection集合 1.1集合体系结构【记忆】 集合类的特点 ? 提供一种存储空间可变的存储模型,存储的数据容量可以随时发生改变 集合类的体系图 1.2Collection集合概述和基本使用【应用】 Collection集合概述 是单例集合的顶层接口,它表示一组对象,这些对象也称为Coll ...
分类:编程语言   时间:2021-05-24 04:03:40    阅读次数:0
ThinkPHP报错 The requested URL /admin/index/login.html was not found on this server.
解决方案在入口文件夹public下查看.htaccess是否存在。不存在则新建,存在的话,那内容替换为下面这串代码 就可以解决Not Fund #<IfModule mod_rewrite.c># Options +FollowSymlinks -Multiviews# RewriteEngine ...
分类:Web程序   时间:2021-05-24 04:03:07    阅读次数:0
thinkphp5 改好.htaccess 后依旧 模块不存在 的解决方法!
隐藏入口index.php的整了好久 主要是phpstudy的.htaccess跟thinkphp5文档的写法不一样所导致的 所以记录下来引以为戒。 以Apache为例,需要在入口文件的同级(public目录下)添加.htaccess文件(官方默认自带了该文件),内容如下: <IfModule mo ...
分类:数据库   时间:2021-05-24 04:02:55    阅读次数:0
Master in Burp Suite - Tools Introductions(1)
Master in Burp Suite - Tools Introductions(1) Introduction to Burp Proxy tab How to configure proxy and intercept request Deploy our target website - ...
分类:其他好文   时间:2021-05-24 03:33:58    阅读次数:0
107130条   上一页 1 ... 24 25 26 27 28 ... 10713 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!