public Condition::__toString()
Implements PHP magic __toString method to convert the conditions to string.
string A string version of the conditions.
public function __toString() { // If the caller forgot to call compile() first, refuse to run. if ($this->changed) { return ''; } return $this->stringVersion; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Query!Condition.php/function/Condition::__toString/8.1.x