2022/2/28

fastadmin新增/修改数据自定义下拉框数据

Utils.php class Utils extends Backend {     static function getRoomnum(){         $model = Room::que…

  • fastadmin php
  • 2022/2/28
  • 914
  • 2021/9/6

    fastadmin php去掉index.php 404

    添加 location / {     if (!-e $request_filename) {         rewrite ^(.*)$ /index.php?s=/$1 last;         break;     } }

  • fastadmin php
  • 2021/9/6
  • 769
  • 2021/5/24

    php获取post参数

    一、PHP获取POST数据的几种方法 方法1、最常见的方法是:$_POST['fieldname']; 说明:只能接收Content-Type: application/x-www-form-urlencoded提交的数据解释:也就是表单POST过来的数据 方法2、file_get…

  • php
  • 2021/5/24
  • 790
  • 2021/5/24

    php 获取微信推送的xml

    1 //接收POST数据 2 $input = file_get_contents("php://input"); 3 //提取POST数据为simplexml对象 4 $xml = simplexml_load_string($input); 5 var_…

  • php 微信公众号开发
  • 2021/5/24
  • 797
  • 2021/5/21

    nginx php 配置域名80 443

    server     {         listen 80;         #listen [::]:80;     &nbs…

  • nginx php
  • 2021/5/21
  • 1,312
  • 2021/2/1

    php curl并发

    // 创建批处理cURL句柄         $mh = curl_multi_init(); //创建每一个curl会话 $curl[$count] = curl_init(); // 启动一个CURL…

  • php
  • 2021/2/1
  • 1,213
  • 2020/12/30

    php日期加一天

    cho   date("Y-m-d",strtotime("+1 month",strtotime("2012-02-04"))); 结果为:2011-03-04 echo   date("Y-m-d",strtotime("+1 week",str…

  • php
  • 2020/12/30
  • 1,235