PHP Function List
mysqli_free_result doesn't exist. Closest matches:
- mysql_free_result
- msql_free_result
- mssql_free_result
- fbsql_free_result
- mysqli_result
- mysql_result
- ifx_free_result
- mysqli_bind_result
- ldap_free_result
- msql_result
- pg_free_result
- maxdb_free_result
- ibase_free_result
- mssql_next_result
- mssql_result
- db2_free_result
- cubrid_free_result
- ingres_free_result
- sybase_free_result
- sqlite3result
Site Search Results
-
mysql_free_result() 将释放所有与结果标识符 result 所关联的内存。 mysql_free_result() 仅需要在考虑到返回很大的结果集时会占用多少内存时调用。在脚本结束后所有关联的内存都会被自动释放。
-
mysql_free_result() will free all memory associated with the result identifier result. mysql_free_result() only needs to be called if you are concerned about how much memory is being used for queries that return large result sets.
-
mysql_free_result() は、結果 ID result に関するすべてのメモリを開放します。 mysql_free_result() は、 スクリプト実行のメモリの使用量が多すぎると懸念される場合にのみ 必要になります。
-
Frees the memory associated with the result. Note: You should always free your result with mysqli_free_result(), when your result object is not needed anymore.
-
mysql_free_result() liberará toda la memoria asociada con el identificador del resultado result. mysql_free_result() solo necesita ser llamado si usted está preocupado por la cantidad de memoria que está siendo usada por las consultas que devuelven ...
-
mysql_free_result() libère toute la mémoire et les ressources utilisées par la ressource de résultat result. mysql_free_result() n'est à appeler que si vous avez peur d'utiliser trop de mémoire durant l'exécution de votre script.
-
mysqli_result::fetch_object - Manualwhile ($obj = mysqli_fetch_object ($result)) { printf ("%s (%s)\n", $obj-> Name, $obj-> CountryCode); } /* free result set */ mysqli_free_result ($result);} /* close connection */ mysqli_close ($link);
-
mysqli_stmt::bind_param - Manualforeach($fields as $key => $val) { $temp [$key] = $val; } array_push ($results, $temp); } mysqli_free_result ($result); mysqli_stmt_close ($stmt); self:: close_db_conn();
-
mysql_field_type() 和 mysql_field_name() 函数相似。参数完全相同,但返回的是字段类型而不是字段名。字段类型有“int”,“real”,“string”,“blob”以及其它,详见 » MySQL 手册。

Other forms of search
To search the string "mysqli_free_result" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
