public function Query::nextPlaceholder in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Database/Query/Query.php \Drupal\Core\Database\Query\Query::nextPlaceholder()
Gets the next placeholder value for this query object.
Return value
int The next placeholder value.
Overrides PlaceholderInterface::nextPlaceholder
File
- core/
lib/ Drupal/ Core/ Database/ Query/ Query.php, line 139 - Contains \Drupal\Core\Database\Query\Query.
Class
- Query
- Base class for query builders.
Namespace
Drupal\Core\Database\QueryCode
public function nextPlaceholder() {
return $this->nextPlaceholder++;
}