登录  /  注册
首页 > php教程 > php手册 > 正文

使用 OAuth2-Server-php 在 Yii 框架上搭建 OAuth2 Server

php中文网
发布: 2016-07-11 20:00:37
原创
1232人浏览过

    yii 有很多 extension 可以使用,在查看了 yii 官网上提供的与 oauth 相关的扩展后,发现了几个 oauth2 的客户端扩展,但是并没有找到可以作为 oauth2 server 的扩展。因为 yii 是组织良好的易于扩展的框架,所以完全可以集成其它的 php oauth2 server 实现方案。在 oauth.net/2/ 官网上,提供了几个 php 实现的 oauth2 server。这里使用第一个 oauth2-server-php 来作为 yii 框架的 oauth2 server 扩展,需要进行一些必要的整合操作,主要是编写一个类来接受 client 访问和颁发 access_token 等。

第一部分: 数据库准备

    oauth2-server-php  使用的数据库结构采用 github 上的 oauth2-server-php readme.md 提供的表结构(schema),一共有五张表:

    mysql> show tables;
    +--------------------------+
    | tables_in_oauth2         |
    +--------------------------+
    | oauth_access_token       |
    | oauth_authorization_code |
    | oauth_client             |
    | oauth_refresh_token      |
    | user                     |
    +--------------------------+
    5 rows in set (0.00 sec)
   
    各表的名字说明了表中存取的内容,表名可自定义,自定义位置为:oauth2/storage/pdo.php 48行的 config 数组中,因为这里采用的是 mysql 数据库,所以需要修改的是 pdo,若是采用其它的存储方案,如 redis,则自行修改对应文件即可。注意这里的数据库名称是都是单数形式。

    使用以下 sql 语句创建这5个表,并添加一个测试 client:
    ###############################
    ### oauth2 tables
    ###############################
    drop table if exists `oauth_client`;
    drop table if exists `oauth_access_token`;
    drop table if exists `oauth_authorization_code`;
    drop table if exists `oauth_refresh_token`;
    drop table if exists `user`;

    create table `oauth_client` (
    `client_id` varchar(80) not null,
    `client_secret` varchar(80) not null,
    `redirect_uri` varchar(2000) not null,
    constraint client_id_pk primary key (client_id)
    );

    create table `oauth_access_token` (
    `access_token` varchar(40) not null,
    `client_id` varchar(80) not null,
    `user_id` varchar(255),
    `expires` timestamp not null,
    `scope` varchar(2000),
    constraint access_token_pk primary key (access_token)
    );

    create table `oauth_authorization_code` (
    `authorization_code` varchar(40) not null,
    `client_id` varchar(80) not null,
    `user_id` varchar(255),
    `redirect_uri` varchar(2000),
    `expires` timestamp not null,
    `scope` varchar(2000),
    constraint auth_code_pk primary key (authorization_code)
    );

    create table `oauth_refresh_token` (
    `refresh_token` varchar(40) not null,
    `client_id` varchar(80) not null,
    `user_id` varchar(255),
    `expires` timestamp not null,
    `scope` varchar(2000),
    constraint refresh_token_pk primary key (refresh_token)
    );

    --
    create table `user` (
    `user_id` int(11) not null auto_increment,
    `username` varchar(255) not null,
    `password` varchar(2000),
    `first_name` varchar(255),
    `last_name` varchar(255),
    constraint user_pk primary key (user_id)
    );
    -- test data
    insert into oauth_client (client_id, client_secret, redirect_uri)
        values ("testclient", "testpass", "http://fake/");
    insert into user (username, password, first_name, last_name)
        values ('rereadyou', '8551be07bab21f3933e8177538d411e43b78dbcc', 'bo', 'zhang');


第二部分: 认证方案及实现

    oauth2 rfc 6749 规范提供了四种基本认证方案,以下针对这四种认证方案以及它们在本实现中的使用方式进行分别说面。

第一种认证方式: authorization code grant (授权码认证)

    授权码通过使用授权服务器做为客户端与资源所有者的中介而获得。客户端不是直接从资源所有者请求授权,而是引导资源所有者至授权服务器(由在rfc2616中定义的用户代理),授权服务器之后引导资源所有者带着授权码回到客户端。

    在引导资源所有者携带授权码返回客户端前,授权服务器会鉴定资源所有者身份并获得其授权。由于资源所有者只与授权服务器进行身份验证,所以资源所有者的凭据不需要与客户端分享。

    授权码提供了一些重要的安全益处,例如验证客户端身份的能力,以及向客户端直接的访问令牌的传输而非通过资源所有者的用户代理来传送它而潜在暴露给他人(包括资源所有者)。

    授权码许可类型用于获得访问令牌和刷新令牌并未机密客户端进行了优化。由于这是一个基于重定向的流程,客户端必须能够与资源所有者的用户代理(通常是web浏览器)进行交互并能够接收来自授权服务器的传入请求(通过重定向)。

  authorization code grant 过程(又称为 web server flow) 参见如下:
     +----------+
     | resource |
     |   owner  |
     |          |
     +----------+
          ^
          |
         (b)
     +----|-----+          client identifier      +---------------+
     |          +----(a)-- & redirection uri ---->|               |
     |  user-   |                                 | authorization |
     |  agent   +----(b)-- user authenticates --->|     server    |
     |          |                                 |               |
     |          +----(c)-- authorization code ---
     +-|----|---+                                 +---------------+
       |    |                                         ^      v
      (a)  (c)                                        |      |
       |    |                                         |      |
       ^    v                                         |      |
     +---------+                                      |      |
     |         |>---(d)-- authorization code ---------'      |
     |  client |          & redirection uri                  |
     |         |                                             |
     |         |
     +---------+       (w/ optional refresh token)

    注:说明步骤(a)、(b)和(c)的直线因为通过用户代理而被分为两部分。
    图1:授权码流程

    在图1中所示的流程包括以下步骤:

    (a)客户端通过向授权端点引导资源所有者的用户代理开始流程。客户端包括它的客户端标识、请求范围、本地状态和重定向uri,一旦访问被许可(或拒绝)授权服务器将传送用户代理回到该uri。
    (b)授权服务器验证资源拥有者的身份(通过用户代理),并确定资源所有者是否授予或拒绝客户端的访问请求。
    (c)假设资源所有者许可访问,授权服务器使用之前(在请求时或客户端注册时)提供的重定向uri重定向用户代理回到客户端。重定向uri包括授权码和之前客户端提供的任何本地状态。
    (d)客户端通过包含上一步中收到的授权码从授权服务器的令牌端点请求访问令牌。当发起请求时,客户端与授权服务器进行身份验证。客户端包含用于获得授权码的重定向uri来用于验证。
    (e)授权服务器对客户端进行身份验证,验证授权代码,并确保接收的重定向uri与在步骤(c)中用于重定向客户端的uri相匹配。如果通过,授权服务器响应返回访问令牌与可选的刷新令牌。

    过程实现:
    1.    client app 使用 app id 获取 authorization code:

    www.yii.com/oauth2/index.php?r=oauth2/authroize&response_type=code&client_id=testclient&state=xyz

    返回:$authcode = authorization code.
    tips:     authorization code will expired in 30s,可以修改 oauth2/responsetype/authorizationcode.php 中的 authorizationcode class 的构造方法配置参数来自定义 authorization_code 有效时间。
    client_id 是之前注册在本 server 上的应用名称,这属于客户端管理范畴。
    这一步需要进行用户(资源所有者)登录 oauth2 server 来完成授权操作。用户登录属用户管理范畴,不属 oauth2 server 中应编写的功能。
    用户登录后可选择自己可以向 client app 开放的操作(授权)。
    这一步绑定过程中,从安全角度来考虑应强制用户重新输入用户名密码确认绑定,不要直接读取当前用户session进行绑定。

    2. 获取 access_token:
       client app 使用 authorization code 换取 access_token

       curl -u testclient:testpass www.yii.com/oauth2/index.php?r=oauth2/token -d "grant_type=authorization_code&code=$authcode

       返回:
        成功:
        {"access_token":"aea4a1059d3194a3dd5e4117bedd6e07ccc3f402",
         "expires_in":3600,
         "token_type":"bearer",
         "scope":null,
         "refresh_token":"269a623f54171e8598b1852eefcf115f4882b820"
        }

        失败:
        {"error":"invalid_grant",
         "error_description":"authorization code doesn't exist or is invalid for the client"
        }

    tip: 本步骤需要使用客户端的 client_id 和 client_secret 以及上一步获取的 authorization_code 换取 access_code.
         access_tokne 有效期为 3600s, refresh_token 有效期为 1209600s,可以在 oauth2/responsetype/accesstoken.php 中的 accesstoken class 中的构造函数配置中进行修改。
   
  

第二种认证方式: implicit (隐式认证)
   
    隐式授权类型被用于获取访问令牌(它不支持发行刷新令牌),并对知道操作具体重定向uri的公共客户端进行优化。这些客户端通常在浏览器中使用诸如javascript的脚本语言实现。

    由于这是一个基于重定向的流程,客户端必须能够与资源所有者的用户代理(通常是web浏览器)进行交互并能够接收来自授权服务器的传入请求(通过重定向)。

    不同于客户端分别请求授权和访问令牌的授权码许可类型,客户端收到访问令牌作为授权请求的结果。

    隐式许可类型不包含客户端身份验证而依赖于资源所有者在场和重定向uri的注册。因为访问令牌被编码到重定向uri中,它可能会暴露给资源所有者和其他驻留在相同设备上的应用。

    采用implicit grant方式获取access token的授权验证流程又被称为user-agent flow,适用于所有无server端配合的应用(由于应用往往位于一个user agent里,如浏览器里面,因此这类应用在某些平台下又被称为client-side application),如手机/桌面客户端程序、浏览器插件等,以及基于javascript等脚本客户端脚本语言实现的应用,他们的一个共同特点是,应用无法妥善保管其应用密钥(app secret key),如果采取authorization code模式,则会存在泄漏其应用密钥的可能性。其流程示意图如下:

     +----------+
     | resource |
     |  owner   |
     |          |
     +----------+
          ^
          |
         (b)
     +----|-----+          client identifier     +---------------+
     |          +----(a)-- & redirection uri --->|               |
     |  user-   |                                | authorization |
     |  agent   |----(b)-- user authenticates -->|     server    |
     |          |                                |               |
     |          |
     |          |          with access token     +---------------+
     |          |            in fragment
     |          |                                +---------------+
     |          |----(d)--- redirection uri ---->|   web-hosted  |
     |          |          without fragment      |     client    |
     |          |                                |    resource   |
     |     (f)  |
     |          |                                +---------------+
     +-|--------+
       |    |
      (a)  (g) access token
       |    |
       ^    v
     +---------+
     |         |
     |  client |
     |         |
     +---------+

     注:说明步骤(a)和(b)的直线因为通过用户代理而被分为两部分。

     图2:隐式许可流程

    图2中的所示流程包含以下步骤:

    (a)客户端通过向授权端点引导资源所有者的用户代理开始流程。客户端包括它的客户端标识、请求范围、本地状态和重定向uri,一旦访问被许可(或拒绝)授权服务器将传送用户代理回到该uri。
    (b)授权服务器验证资源拥有者的身份(通过用户代理),并确定资源所有者是否授予或拒绝客户端的访问请求。
    (c)假设资源所有者许可访问,授权服务器使用之前(在请求时或客户端注册时)提供的重定向uri重定向用户代理回到客户端。重定向uri在uri片段中包含访问令牌。
    (d)用户代理顺着重定向指示向web托管的客户端资源发起请求(按rfc2616该请求不包含片段)。用户代理在本地保留片段信息。
    (e)web托管的客户端资源返回一个网页(通常是带有嵌入式脚本的html文档),该网页能够访问包含用户代理保留的片段的完整重定向uri并提取包含在片段中的访问令牌(和其他参数)。
    (f)用户代理在本地执行web托管的客户端资源提供的提取访问令牌的脚本。
    (g)用户代理传送访问令牌给客户端。

     tips: 1. 一般不需提供 client_secret,仅需 client_id,单用户同样需要认证。
       2. implicit grant type 不支持 refresh_token(或可自行实现)机制。
       3. the first time the user authenticates your app using implicit grant flow store the access token! once you have the access token do not try to re-authenticate. your access token that you stored should continue to work!
          一旦获取 access_token (存在于 redirect_uri 的 fragment 中, 即 uri 中的 # 部分),client 需要自己存储 access_token。
       4. 比较适用于 client-side application,如手机/桌面客户端程序、浏览器插件等

    oauth2-server-php 对本授权方式的实现如下:

    1. 这种授权方式包含于 authorization code grant (是对 authorization code grant 方式的简化)。
  
    初始化 oauth2controller 时, 只需向 oauth2 server 添加 authorizationcode 类型的授权即可,如下:
        $server->addgranttype(new oauth2\granttype\authorizationcode($storage));

    authorization code 默认不支持 implicit grant, 需要将 server.php 第 104 行的 'allow_implicit' 修改为 'true' 以开启 implicit 授权。


    2. 获取 access_token

    http://www.yii.com/oauth2/index.php?r=oauth2/authorize&response_type=token&client_id=testclient&state=xyz&redirect_uri=www.baidu.com

    参数: response_type=token (必须, 固定值)
             client_id (必须)
             redirect_uri 可选
             scope    可选
             state    推荐
    注意:response_type = token 而不是 code, 因为隐式授权不用获取 authorization code。
    返回:
        成功:
            需要用户先点击授权按钮。
            success! authorization code: www.baidu.com?#access_token=9f0c38b475e51ccd3

        出错: redirect_uri 与注册的 client redirect_uri 不匹配。
            {"error":"redirect_uri_mismatch","error_description":"the redirect uri provided is missing or does not match","error_uri":"http:\/\/tools.ietf.org\/html\/rfc6749#section-3.1.2"}

    access_token 存在于 redirect_uri 中的片段(fragment)中, 即‘#’符号之后,client 需要自己提取片段中的 access_token 并注意保存。开发人员应注意,一些用户代理不支持在http“location”http响应标头字段中包含片段组成部分。这些客户端需要使用除了3xx重定向响应以外的其他方法来重定向客户端——-例如,返回一个html页面,其中包含一个具有链接到重定向uri的动作的“继续”按钮。
   

第三种认证方式: resource owner password credentials (资源所有者密码凭证许可)

    资源所有者密码凭据许可类型适合于资源所有者与客户端具有信任关系的情况,如设备操作系统或高级特权应用。当启用这种许可类型时授权服务器应该特别关照且只有当其他流程都不可用时才可以。

    这种许可类型适合于能够获得资源所有者凭据(用户名和密码,通常使用交互的形式)的客户端。通过转换已存储的凭据至访问令牌,它也用于迁移现存的使用如http基本或摘要身份验证的直接身份验证方案的客户端至oauth。

     +----------+
     | resource |
     |  owner   |
     |          |
     +----------+
          v
          |    resource owner
         (a) password credentials
          |
          v
     +---------+                                  +---------------+
     |         |>--(b)---- resource owner ------->|               |
     |         |         password credentials     | authorization |
     | client  |                                  |     server    |
     |         |
     |         |    (w/ optional refresh token)   |               |
     +---------+                                  +---------------+

     图3:资源所有者密码凭据流程

     图3中的所示流程包含以下步骤:

    (a)资源所有者提供给客户端它的用户名和密码。
    (b)通过包含从资源所有者处接收到的凭据,客户端从授权服务器的令牌端点请求访问令牌。当发起请求时,客户端与授权服务器进行身份验证。

    (c)授权服务器对客户端进行身份验证,验证资源所有者的凭证,如果有效,颁发访问令牌。


    tips: 客户端一旦获得访问令牌必须丢弃凭据。

oauth2-server-php 对 resource owner password credentials 的实现如下:

    1. 首先在 oauth2controller 的构造函数中添加对于 resource owner password credentials 授权方式的支持,加入以下代码:

    $server->addgranttype(new oauth2\granttype\usercredentials($storage));

    2. 获取 access_token :

    curl -u testclient:testpass www.yii.com/oauth2/index.php?r=oauth2/token -d 'grant_type=password&username=rereadyou&password=rereadyou'

    返回:
        {"access_token":"66decd1b10891db5f8f63efe7cc352ce326895c6",
         "expires_in":3600,
         "token_type":"bearer",
         "scope":null,
         "refresh_token":"b5fa0c24e786e37e7ce7d6e2f911805dc65a0d7c"}

    tips:    github 上 oauth2-server-php 提供的 sql schema user 表里面没有 user_id 字段[12],需要自行添加该字段(主键, auto_increment)。
        user 表设计使用 sha1 摘要方式,没有添加 salt。
       
        在 pdo.php 中有:
        // plaintext passwords are bad!  override this for your application
        protected function checkpassword($user, $password)
        {
            return $user['password'] == sha1($password);
        }
        对于用户认证需要改写这个函数。



第四种认证方式: client credentials grant (客户端凭证许可)

    当客户端请求访问它所控制的,或者事先与授权服务器协商(所采用的方法超出了本规范的范围)的其他资源所有者的受保护资源,客户端可以只使用它的客户端凭据(或者其他受支持的身份验证方法)请求访问令牌。

    客户端凭据许可类型必须只能由机密客户端使用。

     +---------+                                  +---------------+
     |         |                                  |               |
     |         |>--(a)- client authentication --->| authorization |
     | client  |                                  |     server    |
     |         |
     |         |                                  |               |
     +---------+                                  +---------------+

     图4:客户端凭证流程

     图4中的所示流程包含以下步骤:

    (a)客户端与授权服务器进行身份验证并向令牌端点请求访问令牌。

    (b)授权服务器对客户端进行身份验证,如果有效,颁发访问令牌。

     tips: 这是最简单的认证方式。

     由于客户端身份验证被用作授权许可,所以不需要其他授权请求。

    实现如下:
    1. 在 oauth2controller 中添加对 client credentials 认证方式的支持:

    $server->addgranttype(new oauth2\granttype\clientcredentials($storage));
   
    2. 获取 access_token:

    curl -u testclient:testpass www.yii.com/oauth2/index.php?r=oauth2/token -d 'grant_type=client_credentials'
   
    提交参数: grant_type    required.  value must be set to "client_credentials".
           scope    optional. 
    返回:
        {"access_token": "f3c30def0d28c633e34921b65388eb0bbd9d5ff9",
         "expires_in":3600,
         "token_type":"bearer",
         "scope":null}

    tips: client 直接使用自己的 client id 和 client_secret 获取 access_token;
          rfc6749规范指明[10] clinet crendentials 客户端认证取得 access_token 时不包括 refresh_token。
          不过,oauth2-server-php 提供了控制开关,在 oauth2/granttypes/clientcredentials.php 第 33 行[11],
          默认 $includerefreshtoken = false; 设置为 true, 则可在颁发 access_token 同时颁发 refresh_token。
   

第三部分: access_token 类型说明
    客户端在操作数据资源时(通过 api)需要向 server 出示 access_token,关于如何出示 access_token 和 access_token 类型由以下部分说明。
    ietf rfc 6749 中说明的 access_token 类型有两种:bearer type 和 mac type。
    由于 oauth2-server-php 对于 mac 类型的 access_token 尚在开发之中,以下仅对最常使用的 bearer 类型 access_token 进行说明。

    有三种在资源请求中发送 bearer access_token 资源给资源服务器的方法[13]。客户端不能在每次请求中使用超过一个方法传输令牌。
    a. 当在由http/1.1[rfc2617]定义的“authorization”请求头部字段中发送访问令牌时,客户端使用“bearer”身份验证方案来传输访问令牌。

        get /resource http/1.1
        host: server.example.com
        authorization: bearer mf_9.b5f-4.1jqm

    客户端应该使用带有“bearer”http授权方案的“authorization”请求头部字段发起带有不记名令牌的身份验证请求。资源服务器必须支持此方法。
   
    b. 表单编码的主体参数
       当在http请求实体主体中发送访问令牌时,客户端采用“access_token”参数向请求主体中添加访问令牌。客户端不能使用此方法,除非符合下列所有条件:
       http请求的实体头部含有设置为“application/x-www-form-urlencoded”的“content-type”头部字段。
       实体主体遵循html4.01[w3c.rec-html401-19991224]定义的“application/x-www-form-urlencoded”内容类型的编码要求。
       http请求实体主体是单一的部分。
       在实体主体中编码的内容必须完全由ascii[usascii]字符组成。
       http请求方法是请求主体定义为其定义的语法。尤其是,这意味着“get”方法不能被使用。
      
       客户端采用传输层安全发起如下的http请求:
       
        post /resource http/1.1
        host: server.example.com
        content-type: application/x-www-form-urlencoded
        access_token=mf_9.b5f-4.1jqm

    c. 当在http请求uri中发送访问令牌时,客户端采用“access_token”参数,向“统一资源标示符(uri):通用语法”rfc3986定义的请求uri查询部分添加访问令牌。

       例如,客户端采用传输层安全发起如下的http请求:

        get /resource?access_token=mf_9.b5f-4.1jqm http/1.1
        host: server.example.com

       它不应该被使用,除非不能在“authorization”请求头部字段或http请求实体主体中传输访问令牌。
   
    以上在 rfc6750 规范中提出的三种 access_token 的使用方式。推荐使用第一种方案。bearer token 的使用需要借助 tls 来确保 access_token 传输时的安全性。


第四部分: 使用 bearer access_token 的调用 api

    1. 使用 refresh_token 换取 access_token:
     curl -u testclient:testpass www.yii.com/oauth2/index.php?r=oauth2/token -d "grant_type=refresh_token&refresh_token=1ce1a52dff3b5ab836ae25714c714cb86bf31b6f"

    返回:
        {"access_token":"50540a7ead3a27cdb458b6cdc38df25f64da18f1",
         "expires_in":3600,
         "token_type":"bearer",
         "scope":null}
        这里没有新的 refresh_token,需要进行配置以重新获取 refresh_token,可修改 oauth2/granttype/refreshtoken.php 中的 refreshtoken class __construct 方法中的 'always_issue_new_refresh_token' => true 来开启颁发新的 refresh_token。
    tips: ietf rfc2649 中对于 refresh_token section 的部分说明,
        post /token http/1.1
        host: server.example.com
        authorization: basic czzcagrsa3f0mzpnwdfmqmf0m2jw
        content-type: application/x-www-form-urlencoded

        grant_type=refresh_token&refresh_token=tgzv3jokf0xg5qx2tlkwia

    需要提供客户端的 client_id 和 client_secret, grant_type 值必须是 refresh_token。
    access_token 有效期内不能使用 refresh_token 换取新的 access_token。

    2. 使用 access_token:
    a. client app 使用 access_token 获取 resource 信息。
    oauth2-server 验证 access_token:
        curl www.yii.com/oauth2/index.php?r=oauth2/verifytoken -d 'access_token=aea4a1059d3194a3dd5e4117bedd6e07ccc3f402'

    返回:
        {"result":"success",
         "message":"your access token is valid."
        }

    这个部分只是为了验证 access token 的有效性,client app 并不应该直接调用该方法,而是在请求资源时有server自行调用,根据判断结果进行不同处理。
    可以在 oauth2 extension 的 server.php 中来修改 access_token 的有效期。

    3. scope
    scope 需要服务端确定具体的可行操作。
    scope 用来确定 client 所能进行的操作权限。项目中操作权限由 srbac 进行控制, oauth2 中暂不做处理。

    4. state
    state 为 client app 在第一步骤中获取 authorization code 时向 oauth2 server 传递并由 oauth2 server 返回的随机哈希参数。state 参数主要用来防止跨站点请求伪造(cross site request forgery, csrf),相关讨论可参见本文最后的参考【7】和【8】。

   
references:
    [0] oauth2 rfc6749 中文版本
    [1] yii 官网 oauth 扩展里表    
    [2] oauth2 官网  
    [3] github 上的 oauth2-server-php   
    [4] 认证码许可中文版 
    [5] 使用 refresh_token 换取 access_token   
    [6] 总是发送新的 refresh_token
    [7] oauth2 state 参数   
    [8] ietf 上 oauth2 draft 对于 csrf 的说明 
    [9] sohu implict grant 说明  
    [10] rfc6749 client credentials 关于 refresh_token 说明   
    [11] oauth2-server-php 关于 refresh_token 的 fix 信息 
    [12] oauth2-server-php 上关于 resource owner password credentials grant 中 user_id 的 fix  
    [13] bearer token 使用方式  

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
关于CSS思维导图的课件在哪? 课件
凡人来自于2024-04-16 10:10:18
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号