Ai
1 Star 0 Fork 0

中通技术团队/zopsdk-php

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ZopRequest.php 607 Bytes
一键复制 编辑 原始数据 按行查看 历史
天羽ちよこ 提交于 2019-04-03 14:54 +08:00 . 支持直接设置请求json
<?php
namespace zop;
class ZopRequest
{
private $url;
private $params = Array();
public function addParam($k, $v)
{
$this->params += [$k => $v];
}
/**
* @param mixed $url
*/
public function setUrl($url)
{
$this->url = $url;
}
public function setData($data)
{
$this->params = json_decode($data);
}
/**
* @return mixed
*/
public function getUrl()
{
return $this->url;
}
/**
* @return array
*/
public function getParams()
{
return $this->params;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/zto_express/zopsdk-php.git
git@gitee.com:zto_express/zopsdk-php.git
zto_express
zopsdk-php
zopsdk-php
master

搜索帮助