mac nginx服务器实现局域网内访问本地项目
找到nginx默认的配置文件/usr/local/etc/nginx/nginx.conf修改root,改成自己项目的路径http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 6...
curl模拟GET、POST、PUT、DELETE请求(PHP)
<?php namespace App\Helpers\Tool; use App\Helpers\Traits\SingletonTrait; use Illuminate\Support\Facades\Log; class Curl { use SingletonTrait; protected $app_token; public functi...
laravel多语言设置
根据自己使用的laravel版本,composer安装对应的包 config/app.php中配置默认语言'locale' => 'zh_CN',将语言文件放置在resources/lang目录中(例:resources/lang/zh_CN/demo.php)<?ph...
字符串内容的替换PHP
使用新的字符串替换原来字符串中指定的特定字符串str_replace 区分大小写str_ireplace() 不区分大小写str_replace(find,replace,string,count) str_ireplace(find,replace,string,count)参数...
查看服务器端口是否放行
netstat 命令来查看端口是否开放(tcp类型端口)//查看是否监听在0.0.0.0:1025 netstat -aptn |grep -i 1025 //查看TCP类型的端口 netstat -lptn |grep -i 1025 //查看UDP类型的端口 netstat -l...
http response status code http响应状态码
public static function get_http_status($code) { $code = intval($code); $headers_desc = [ 100 => 'Continue', 101 => 'Switching Protocols', 102 => 'Processing', 200 => 'O...
thinkphp6整合jwt
composer安装jwt包创建密钥php think jwt:create使用方式:对于需要验证的路由或者模块添加中间件:thans\jwt\middleware\JWTAuth::class,示例:$token = JWTAuth::builder(['uid' => 1]);//...