mirror of
https://github.com/YGGverse/nex-php.git
synced 2026-03-31 09:45:28 +00:00
fix query format
This commit is contained in:
parent
55b4c879e4
commit
1129cd1657
1 changed files with 4 additions and 1 deletions
|
|
@ -113,7 +113,10 @@ class Client
|
||||||
sprintf(
|
sprintf(
|
||||||
"%s%s\r\n",
|
"%s%s\r\n",
|
||||||
$this->_path,
|
$this->_path,
|
||||||
$this->_query
|
$this->_query ? sprintf(
|
||||||
|
'?%s',
|
||||||
|
$this->_query
|
||||||
|
) : null
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue