From beb09db76bd516580d32b751c5cb3b8388774b85 Mon Sep 17 00:00:00 2001 From: TAKAGI Masahiro Date: Sat, 11 May 2013 21:39:53 +0000 Subject: [PATCH] Set svn properties git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@330206 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/array/functions/array-column.xml | 338 +++++++++--------- .../curl/functions/curl-multi-setopt.xml | 170 ++++----- .../curl/functions/curl-multi-strerror.xml | 134 +++---- 3 files changed, 321 insertions(+), 321 deletions(-) diff --git a/reference/array/functions/array-column.xml b/reference/array/functions/array-column.xml index 52645c6551..6beed8c8c0 100644 --- a/reference/array/functions/array-column.xml +++ b/reference/array/functions/array-column.xml @@ -1,169 +1,169 @@ - - - - - array_column - Return the values from a single column in the input array - - - &reftitle.description; - - arrayarray_column - arrayinput - mixedcolumn_key - mixedindex_key - - - array_column returns the values from a single column of - the input array, identified by the - column_key. Optionally, you may provide an - index_key to index the values in the returned array by - the values from the index_key column in the input - array. - - - - &reftitle.parameters; - - - - input - - - A multi-dimensional array (record set) from which to pull a column of - values. - - - - - column_key - - - The column of values to return. This value may be the integer key of the - column you wish to retrieve, or it may be the string key name for an - associative array. It may also be &null; to return complete arrays - (useful together with index_key to reindex the - array). - - - - - index_key - - - The column to use as the index/keys for the returned array. This value - may be the integer key of the column, or it may be the string key name. - - - - - - - - &reftitle.returnvalues; - - Returns an array of values representing a single column from the input array. - - - - &reftitle.examples; - - - Get column of first names from recordset - - 2135, - 'first_name' => 'John', - 'last_name' => 'Doe', - ), - array( - 'id' => 3245, - 'first_name' => 'Sally', - 'last_name' => 'Smith', - ), - array( - 'id' => 5342, - 'first_name' => 'Jane', - 'last_name' => 'Jones', - ), - array( - 'id' => 5623, - 'first_name' => 'Peter', - 'last_name' => 'Doe', - ) -); - -$first_names = array_column($records, 'first_name'); -print_r($first_names); -?> -]]> - - &example.outputs; - - John - [1] => Sally - [2] => Jane - [3] => Peter -) -]]> - - - - - - - Get column of last names from recordset, indexed by the "id" column - - - -]]> - - &example.outputs; - - Doe - [3245] => Smith - [5342] => Jones - [5623] => Doe -) -]]> - - - - - - - + + + + + array_column + Return the values from a single column in the input array + + + &reftitle.description; + + arrayarray_column + arrayinput + mixedcolumn_key + mixedindex_key + + + array_column returns the values from a single column of + the input array, identified by the + column_key. Optionally, you may provide an + index_key to index the values in the returned array by + the values from the index_key column in the input + array. + + + + &reftitle.parameters; + + + + input + + + A multi-dimensional array (record set) from which to pull a column of + values. + + + + + column_key + + + The column of values to return. This value may be the integer key of the + column you wish to retrieve, or it may be the string key name for an + associative array. It may also be &null; to return complete arrays + (useful together with index_key to reindex the + array). + + + + + index_key + + + The column to use as the index/keys for the returned array. This value + may be the integer key of the column, or it may be the string key name. + + + + + + + + &reftitle.returnvalues; + + Returns an array of values representing a single column from the input array. + + + + &reftitle.examples; + + + Get column of first names from recordset + + 2135, + 'first_name' => 'John', + 'last_name' => 'Doe', + ), + array( + 'id' => 3245, + 'first_name' => 'Sally', + 'last_name' => 'Smith', + ), + array( + 'id' => 5342, + 'first_name' => 'Jane', + 'last_name' => 'Jones', + ), + array( + 'id' => 5623, + 'first_name' => 'Peter', + 'last_name' => 'Doe', + ) +); + +$first_names = array_column($records, 'first_name'); +print_r($first_names); +?> +]]> + + &example.outputs; + + John + [1] => Sally + [2] => Jane + [3] => Peter +) +]]> + + + + + + + Get column of last names from recordset, indexed by the "id" column + + + +]]> + + &example.outputs; + + Doe + [3245] => Smith + [5342] => Jones + [5623] => Doe +) +]]> + + + + + + + diff --git a/reference/curl/functions/curl-multi-setopt.xml b/reference/curl/functions/curl-multi-setopt.xml index b04a8be233..a9cc4e3ec9 100644 --- a/reference/curl/functions/curl-multi-setopt.xml +++ b/reference/curl/functions/curl-multi-setopt.xml @@ -1,85 +1,85 @@ - - - - - - curl_multi_setopt - Set an option for the cURL multi handle - - - - &reftitle.description; - - boolcurl_multi_setopt - resourcemh - intoption - mixedvalue - - - - - - &warn.undocumented.func; - - - - - &reftitle.parameters; - - - mh - - - - - - - - option - - - One of the CURLMOPT_* constants. - - - - - value - - - - - - - - - - - &reftitle.returnvalues; - - &return.success; - - - - - - - + + + + + + curl_multi_setopt + Set an option for the cURL multi handle + + + + &reftitle.description; + + boolcurl_multi_setopt + resourcemh + intoption + mixedvalue + + + + + + &warn.undocumented.func; + + + + + &reftitle.parameters; + + + mh + + + + + + + + option + + + One of the CURLMOPT_* constants. + + + + + value + + + + + + + + + + + &reftitle.returnvalues; + + &return.success; + + + + + + + diff --git a/reference/curl/functions/curl-multi-strerror.xml b/reference/curl/functions/curl-multi-strerror.xml index fe2e13b3c2..54ba47c013 100644 --- a/reference/curl/functions/curl-multi-strerror.xml +++ b/reference/curl/functions/curl-multi-strerror.xml @@ -1,67 +1,67 @@ - - - - - - curl_multi_strerror - Return string describing error code - - - - &reftitle.description; - - stringcurl_multi_strerror - interrornum - - - - - - &warn.undocumented.func; - - - - - &reftitle.parameters; - - - errornum - - - - - - - - - - - &reftitle.returnvalues; - - Returns error string for valid error codes, &null; otherwise. - - - - - - - + + + + + + curl_multi_strerror + Return string describing error code + + + + &reftitle.description; + + stringcurl_multi_strerror + interrornum + + + + + + &warn.undocumented.func; + + + + + &reftitle.parameters; + + + errornum + + + + + + + + + + + &reftitle.returnvalues; + + Returns error string for valid error codes, &null; otherwise. + + + + + + +