`

php http_build_query

    博客分类:
  • php
 
阅读更多

这函数方便,不用自己去拼接了

http_build_query

(PHP 5)

http_build_query -- 生成 url-encoded 之后的请求字符串

描述

string http_build_query ( array formdata [, string numeric_prefix] )

使用给出的关联(或下标)数组生成一个 url-encoded 请求字符串。参数 formdata 可以是数组或包含属性的对象。一个 formdata 数组可以是简单的一维结构,也可以是由数组组成的数组(其依次可以包含其它数组)。如果在基础数组中使用了数字下标同时给出了 numeric_prefix 参数,此参数值将会作为基础数组中的数字下标元素的前缀。这是为了让 PHP 或其它 CGI 程序在稍后对数据进行解码时获取合法的变量名。

例子 1. http_build_query() 使用示例

<?php
$data 
= array('foo'=>'bar',
              
'baz'=>'boom',
              
'cow'=>'milk',
              
'php'=>'hypertext processor');
              
echo 
http_build_query($data);
/* 输出:
      foo=bar&baz=boom&cow=milk&php=hypertext+processor
*/
?>

例子 2. http_build_query() 使用数字下标的元素

<?php
$data 
= array('foo''bar''baz''boom''cow' => 'milk''php' =>'hypertext processor');
              
echo 
http_build_query($data);
/* 输出:
      0=foo&1=bar&2=baz&3=boom&cow=milk&php=hypertext+processor
*/

echo http_build_query($data'myvar_');
/* 输出:
      myvar_0=foo&myvar_1=bar&myvar_2=baz&myvar_3=boom&cow=milk&php=hypertext+processor
*/
?>

例子 3. http_build_query() 使用复杂的数组

<?php
$data 
= array('user'=>array('name'=>'Bob Smith',
                            
'age'=>47,
                            
'sex'=>'M',
                            
'dob'=>'5/12/1956'),
              
'pastimes'=>array('golf''opera''poker''rap'),
              
'children'=>array('bobby'=>array('age'=>12,
                                               
'sex'=>'M'),
                                
'sally'=>array('age'=>8,
                                               
'sex'=>'F')),
              
'CEO');
                                               
echo 
http_build_query($data'flags_');
/* 输出:(为了可读性对其进行了折行)
      user[name]=Bob+Smith&user[age]=47&user[sex]=M&user[dob]=5%1F12%1F1956&
      pastimes[0]=golf&pastimes[1]=opera&pastimes[2]=poker&pastimes[3]=rap&
      children[bobby][age]=12&children[bobby][sex]=M&children[sally][age]=8&
      children[sally][sex]=F&flags_0=CEO

   注意:只有基础数组中的数字下标元素“CEO”才获取了前缀,其它数字下标元素(如
   pastimes 下的元素)则不需要为了合法的变量名而加上前缀。
*/
?>

例子 4. http_build_query() 使用对象

<?php
class myClass {
  var 
$foo;
  var 
$baz;
  
  function 
myClass() {
    
$this->foo 'bar';
    
$this->baz 'boom';
  }
}

$data = new myClass();

echo 
http_build_query($data);
/* 输出:
      foo=bar&baz=boom
*/
?>
分享到:
评论

相关推荐

    http-build-query:js中php的http_build_query()

    从对象(JavaScript中php的http_build_query())生成URL编码的查询字符串。 安装: $ npm install http-build-query 用法: var httpBuildQuery = require ( 'http-build-query' ) ; // Simple using var obj = ...

    php中http_build_query 的一个问题

    在PHP编程中,`http_build_query` 是一个非常实用的函数,它用于将关联数组或者对象转换成HTTP查询字符串格式。这个函数对于处理POST请求的数据,尤其是与CURL库配合时,尤为关键。在给定的标题和描述中,提到了在...

    PHP用法http_build_query()构造URL字符串的方法_.docx

    `http_build_query()`是PHP中一个非常实用的函数,它用于将数组转换为URL编码的字符串,这在构建HTTP请求,特别是GET请求时非常有用。这个函数能够处理各种类型的数组结构,包括一维、多维以及混合索引和关联数组。 ...

    PHP使用http_build_query()构造URL字符串的方法

    本文实例讲述了PHP使用http_build_query()构造URL字符串的方法。分享给大家供大家参考,具体如下: 简单来说,http_build_query()就是将一个数组转换成url 问号?后面的参数字符串,并且会自动进行urlencode处理。 ...

    PHP函数http_build_query使用详解

    $query_string = http_build_query($array); // 输出:name=lizhong&age=18 ``` #### 2.2 一维索引数组 ```php $array = array('lizhong', 18); $query_string = http_build_query($array); // 输出:0=lizhong&1=...

    发送POST请求的三种方式的php类

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); return $response; } } ``` 在这个例子中...

    sms.zip_php post_php post 接口_sms

    $options = array('http' =&gt; array('method' =&gt; 'POST', 'content' =&gt; http_build_query($data))); $context = stream_context_create($options); $response = file_get_contents('your_url', false, $context); ```...

    PHP 解析URL和URL参数拆分与合并

    $query = http_build_query($queryParams); // 将数组转换回查询字符串 $mergedUrl = $scheme . '://' . $authority . $path . '?' . $query; echo $mergedUrl; // 输出:...

    详解php中curl返回false的解决办法

    curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); ``` 这个设置强制cURL使用HTTP/1.1版本,有时能够解决与HTTP协议相关的问题。 4. 服务器端拒绝请求。服务器可能会因为各种原因拒绝来自cURL的...

    php中对链接url的处理

    - `$_SERVER['QUERY_STRING']`包含了URL中的查询字符串。 - 要获取URL中的特定参数,可以使用`$_GET`数组,例如`$_GET['pid']`将获取URL中名为`pid`的参数值。 6. **处理URL**: 示例中提到了一个名为`url::...

    PHP接入支付宝单笔订单查询接口

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($param)); $response = curl_exec($ch); curl_close($ch); // 解析并处理返回结果 $result = json_decode($response, true); if ($result && $result['code...

    php模拟POST提交的4种方法.pdf

    'header' =&gt; "Content-type: application/x-www-form-urlencoded\r\nContent-Length: " . strlen(http_build_query($post_data)), 'content' =&gt; http_build_query($post_data) ] ]); $fp = stream_socket_client...

    PHP中使用file_get_contents post数据代码例子

    接下来的代码块使用了http_build_query()函数,将关联数组转换成URL查询字符串的形式,如果数组元素有值,则会转换为`key=value`的格式,多个元素之间以`&`字符分隔,这样做是为了符合HTTP POST请求时数据发送的格式...

    php的socket发送post请求示例

    $data = http_build_query(['key' =&gt; 'value']); $http_request = "POST /path HTTP/1.1\r\n"; $http_request .= "Host: $host\r\n"; $http_request .= "Content-Type: application/x-www-form-urlencoded\r\n";...

    php中http请求封装HttpClient精华中的经典代码

    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); return [ 'httpCode' =&gt; $httpCode, 'body' =&gt; $response ]; } private function buildUrl($base, array $params) { // 构建带...

    PHP 获取当前的网址的信息

    可以通过`$_SERVER['QUERY_STRING']`获取,它是URL中“?”后面的部分。 6. **片段标识符**: PHP本身不提供直接获取片段标识符(URL中的“#”部分)的方法,因为这是浏览器本地处理的部分,通常不会发送到服务器...

    PHP使用file_get_contents发送http请求功能简单示例

    本文实例讲述了PHP使用file_get_contents发送http请求功能。分享给大家供大家参考,具体如下: 服务器端模拟 POST/GET 等请求,使用 CURL 很容易办到(例如前面一篇《php...$data = http_build_query($data); //$postd

Global site tag (gtag.js) - Google Analytics