芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/www/wp-content/plugins/fluent-smtp/app/Services/DB/QueryBuilder/JoinBuilder.php
joinHandler($key, $operator, $value, 'AND'); } /** * @param $key * @param $operator * @param $value * * @return $this */ public function orOn($key, $operator, $value) { return $this->joinHandler($key, $operator, $value, 'OR'); } /** * @param $key * @param null $operator * @param null $value * @param string $joiner * * @return $this */ protected function joinHandler($key, $operator = null, $value = null, $joiner = 'AND') { $key = $this->addTablePrefix($key); $value = $this->addTablePrefix($value); $this->statements['criteria'][] = compact('key', 'operator', 'value', 'joiner'); return $this; } }