PHP Function List
mysql_fetch_assoc() doesn't exist. Closest matches:
- mysql_fetch_assoc
- mssql_fetch_assoc
- fbsql_fetch_assoc
- mysql_fetch_row
- mysql_fetch_object
- pg_fetch_assoc
- msql_fetch_row
- maxdb_fetch_assoc
- mssql_fetch_batch
- msql_fetch_object
- mysql_fetch_array
- ibase_fetch_assoc
- mysqli_fetch
- db2_fetch_assoc
- mssql_fetch_row
- oci_fetch_assoc
- ingres_fetch_assoc
- mssql_fetch_object
- sybase_fetch_assoc
- msql_fetch_array
Site Search Results
-
返回根据从结果集取得的行生成的关联数组,如果没有更多行则返回 FALSE。 mysql_fetch_assoc() 和用 mysql_fetch_array() 加上第二个可选参数 MYSQL_ASSOC 完全相同。
-
Returns an associative array that corresponds to the fetched row and moves the internal data pointer ahead. mysql_fetch_assoc() is equivalent to calling mysql_fetch_array() with MYSQL_ASSOC for the optional second parameter.
-
But the array is not referential. $array[0] is not a reference to $array['name'] or $array['name'] to $array[0], they are not relationed between. Because of that, the system will use excesive memory. With large columns, try to use mysql_fetch_assoc() or ...
-
Liefert ein assoziatives Array, das der geholten Zeile entspricht und bewegt den internen Datensatzzeiger vorwärts. mysql_fetch_assoc() entspricht in der Funktionsweise exakt dem Aufruf von mysql_fetch_array() mit Angabe von MYSQL_ASSOC als ...
-
Devuelve un array asociativo que corresponde a la fila recuperada y mueve el apuntador de datos interno hacia adelante. mysql_fetch_assoc() es equivalente a llamar mysql_fetch_array() con MYSQL_ASSOC como el segundo parámetro opcional. Únicamente ...
-
取得した行に対応する連想配列を返し、内部のデータポインタを前に進めます。 mysql_fetch_assoc() は、 mysql_fetch_array() の 2 番目のパラメータを MYSQL_ASSOC に指定してコールするのと同じ働き ...
-
mysql_fetch_assoc() retourne un tableau associatif qui contient la ligne lue dans le résultat result et déplace le pointeur interne de données. mysql_fetch_assoc() revient à appeler la fonction mysql_fetch_array() avec MYSQL_ASSOC en tant que ...
-
while ($row = mysql_fetch_assoc($result)) { // do other stuff with $row} // Start snipit 2 $sql = "SELECT * from <table>"; $result = mysql_query($sql); $temp_result = $result; while ($row = mysql_fetch_assoc($temp_result))
-
返回一个包含字段信息的对象。 mysql_fetch_field() 可以用来从某个查询结果中取得 ... mysql_fetch_lengths mysql_fetch_assoc
-
$dbQuery = mysql_query($dbSQL); $dbRow = mysql_fetch_assoc($dbQuery); $EnumValues = $dbRow["Type"]; $EnumValues = substr($EnumValues, 6, strlen($EnumValues)-8); $EnumValues = str_replace("','",",",$EnumValues);

Other forms of search
To search the string "mysql_fetch_assoc()" 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.
