使用CURL模拟访问网页,保留返回的COOKIE <?php class dnspod { public static function api_call($api, $data) { $api = 'https://dnsapi.cn/' . $api; echo $api . PHP_EOL; ...
分类:
Web程序 时间:
2021-01-30 11:45:04
阅读次数:
0
intdiv () 对除法结果取整 int intdiv ( int $dividend , int $divisor ) 说明:返回 dividend 除以 divisor 商数的整数部分。参数: dividend 被除数。 divisor 除数。 返回值: dividend 除以 divisor ...
分类:
Web程序 时间:
2021-01-29 12:20:47
阅读次数:
0
正则表达式 使用方法: ①:描述我们要找的字符串的规律 ②:调用函数,执行该正则表达式 PHP: //把字符串haha找出来 $str="haha,this is my blog" preg_match_all('/haha/',$str,$res); print_r($res); 在PHP里正则必 ...
分类:
其他好文 时间:
2021-01-29 12:19:14
阅读次数:
0
可以在运行app的时候像打开浏览器的F12一样 vConsole-npm vConsole-github 在index.html中添加 <script src="http://wechatfe.github.io/vconsole/lib/vconsole.min.js?v=3.2.0"></scr ...
分类:
移动开发 时间:
2021-01-29 11:54:41
阅读次数:
0
使用elementui框架上传组件的时候,出现session丢失,后端无法获取到sessionid,导致返回状态为未登陆 查看头部发现缺少cookie值 解决办法 设置属性with-credentials为true支持发送 cookie 凭证信 查看请求头有cookie 文件上传成功 ...
分类:
Web程序 时间:
2021-01-29 11:45:41
阅读次数:
0
在Library/Think/Model.class.php 这个基础model类中在添加add,修改save,和删除delete 时各自回调用两个回调函数. 使用这两个回调函数会给开发带来方便. 1 . add()方法回调函数 // 插入数据前的回调方法 protected function _b ...
分类:
Web程序 时间:
2021-01-29 11:44:19
阅读次数:
0
难度1-Low 查看代码: <?php // Is there any input? if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) { // Feedback for end user echo '<pre>He ...
分类:
其他好文 时间:
2021-01-29 11:44:05
阅读次数:
0
一、什么是HTTP基本认证(Basic Authentication) 1、HTTP基本认证 介绍在HTTP中,HTTP基本认证(Basic Authentication)是一种允许网页浏览器或其他客户端程序以(用户名:口令) 请求资源的身份验证方式,不要求cookie,session identi ...
分类:
Web程序 时间:
2021-01-28 12:08:38
阅读次数:
0
验证器类:Validate.php <?php namespace framework\library; class Validate { /** * 当前验证规则 * @var array */ protected $rule = []; /** * 验证提示信息 * @var array */ ...
分类:
Web程序 时间:
2021-01-28 11:58:59
阅读次数:
0
接着上篇 https://www.cnblogs.com/cuocuo/p/14329868.html 当exp为bind的时候,虽然会拼接,但是find()和select()是没办法利用的,我们需要更改一下代码 <?php namespace Home\Controller; use Think\ ...
分类:
Web程序 时间:
2021-01-28 11:55:31
阅读次数:
0