Merge pull request #727 from KapitanOczywisty/patch-8

sqlsrv_get_field optional parameter
This commit is contained in:
Maxim Kolmakov 2020-01-17 18:43:19 +01:00 committed by GitHub
commit 439670d7d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1275,7 +1275,7 @@ function sqlsrv_fetch($stmt, $row=null, $offset=null){}
* information about specifying PHP data types,
* see {@link http://msdn.microsoft.com/en-us/library/cc296208.aspx How to: Specify PHP Data Types}.
*/
function sqlsrv_get_field($stmt, $field_index, $get_as_type){}
function sqlsrv_get_field($stmt, $field_index, $get_as_type=null){}
/**
* Retrieves the next row of data as a numerically indexed array, an associative array, or both.