ajout db_fetch_column_names()
This commit is contained in:
parent
865eb9b1d8
commit
566946fda9
@ -22,6 +22,17 @@ function db_fetch_row(&$res) {
|
|||||||
return $row;
|
return $row;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fonction : db_fetch_column_names()
|
||||||
|
// Renvoie un tableau indexé contenant les noms des colonnes du résultat
|
||||||
|
function db_fetch_column_names(&$res) {
|
||||||
|
$fields = $res->fetch_fields();
|
||||||
|
$col_names = array();
|
||||||
|
foreach($fields as $col) {
|
||||||
|
$col_names[] = $fields->name;
|
||||||
|
}
|
||||||
|
return $col_names;
|
||||||
|
}
|
||||||
|
|
||||||
// Fonction db_escape_string
|
// Fonction db_escape_string
|
||||||
// Retourne ûne chaîne échappée
|
// Retourne ûne chaîne échappée
|
||||||
function db_escape_string(&$db, $string) {
|
function db_escape_string(&$db, $string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user