fetchObject

  1. drupal
    1. drupal7
Versionen
drupal7 public DatabaseStatementPrefetch::fetchObject($class_name = NULL, $constructor_args = array())

Verwandte Themen

Code

includes/database/prefetch.inc, line 388

<?php
public function fetchObject($class_name = NULL, $constructor_args = array()) {
  if (isset($this->currentRow)) {
    if (!isset($class_name)) {
      // Directly cast to an object to avoid a function call.
      $result = (object) $this->currentRow;
    }
    else {
      $this->fetchStyle = PDO::FETCH_CLASS;
      $this->fetchOptions = array('constructor_args' => $constructor_args);
      // Grab the row in the format specified above.
      $result = $this->current();
      // Reset the fetch parameters to the value stored using setFetchMode().
      $this->fetchStyle = $this->defaultFetchStyle;
      $this->fetchOptions = $this->defaultFetchOptions;
    }

    $this->next();

    return $result;
  }
  else {
    return FALSE;
  }
}
?>

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