|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-02-21 11:02 UTC] ab@php.net
-Status: Open
+Status: Feedback
[2016-02-21 11:02 UTC] ab@php.net
[2016-03-06 04:22 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 00:00:02 2025 UTC |
Description: ------------ mysqli_fetch_field_direct does not return any value for default. Test script: --------------- $colInc=0; while ($colInc < mysqli_num_fields($result)){ $field = mysqli_fetch_field_direct($result, $colInc); $returnFields[] = $field->name; $returnFieldType[] = $field->type; $returnFieldDefault[] = $field->def; $colInc++; }