php
文章平均质量分 53
S高雷
学而
展开
-
PHP 实现 上传文件接收 与 文件转发
记一个 PHP 接收 前台上传文件 并将 文件上传到 第三方平台 的实现 过程首先还是一个普普通通的 post 请求函数// 发起请求携带文件数据流function curlPost(string $url, array $params = []){ $ch = curl_init(); //设置选项,包括URL curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,原创 2021-06-01 12:03:59 · 1371 阅读 · 0 评论 -
PHP魔术方法 与简单使用
__construct()这个方法应该是最常用的,被称为构造器或者构造方法,当一个对象被实例化时会被首先调用,而在 PHP 框架中一些过滤器,中间件及依赖注入也一般在这个方法中完成。父类的构造器可以被子类继承和重写。class A { public function __construct() { echo "This is A construct\n"; }}class B extends A{ // 调用父类构造方法,再调用自己的构造方法 pu原创 2021-04-12 11:05:19 · 107 阅读 · 0 评论 -
Ajax 跨域问题-PHP 允许所有请求来源
// 设置允许其他域名访问header('Access-Control-Allow-Origin:*');// 设置允许的响应类型header('Access-Control-Allow-Methods:POST, GET');// 设置允许的响应头header('Access-Control-Allow-Headers:x-requested-with,content-type');// 设置响应格式header('Content-type: application/json; charse原创 2021-04-12 10:37:46 · 159 阅读 · 0 评论 -
Swoole + websocket 实现简易版网页聊天室
使用swoole 的websocket + table ,websocket 负责与前JS 进行通信,table 则负责记录用户信息,实现进程间的数据共享Css原文链接 Swoole + websocket 实现简易版网页聊天室原创 2021-03-20 16:14:46 · 482 阅读 · 0 评论 -
Centos 安装 PHP7.4 + Nginx
准备1、下载所需安装包wget https://www.php.net/distributions/php-7.4.0.tar.gzwget http://nginx.org/download/nginx-1.17.6.tar.gz2、安装所需扩展yum install -y gcc gcc-c++ make cmake bison autoconf wget lrzsz libtoo...原创 2019-12-18 19:30:43 · 3288 阅读 · 0 评论 -
php hash密码使用
PHP自5.5版本开始引入Password Hashing函数,内核自带无需安装扩展。使用前最好确认一下你当前的环境是否支持这些函数。password_get_info — 返回指定哈希(hash)的相关信息password_hash — 创建密码的哈希(hash)password_needs_rehash — Checks if the given hash matches the gi...原创 2019-04-19 14:36:28 · 190 阅读 · 0 评论