__toString

  1. drupal
    1. drupal7
Versionen
drupal7 public InsertQuery::__toString()

Verwandte Themen

Code

includes/database/query.inc, line 461

<?php
public function __toString() {

  // Default fields are always placed first for consistency.
  $insert_fields = array_merge($this->defaultFields, $this->insertFields);

  // For simplicity, we will use the $placeholders array to inject
  // default keywords even though they are not, strictly speaking,
  // placeholders for prepared statements.
  $placeholders = array();
  $placeholders = array_pad($placeholders, count($this->defaultFields), 'default');
  $placeholders = array_pad($placeholders, count($this->insertFields), '?');

  return 'INSERT INTO {' . $this->table . '} (' . implode(', ', $insert_fields) . ') VALUES (' . implode(', ', $placeholders) . ')';
}
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen