/**
  * @see RedBean_Instance::find
  * The variation also exports the beans (i.e. it returns arrays).
  *
  * @param string $type     type   the type of bean you are looking for
  * @param string $sql      sql    SQL query to find the desired bean, starting right after WHERE clause
  * @param array  $bindings values array of values to be bound to parameters in query
  *
  * @return array
  */
 public function findAndExport($type, $sql = NULL, $bindings = array())
 {
     return $this->finder->findAndExport($type, $sql, $bindings);
 }
예제 #2
0
파일: rb.php 프로젝트: abhikalotra/Samples1
 /**
  * @see RedBean_Facade::find
  * The variation also exports the beans (i.e. it returns arrays).
  *
  * @param string $type     type   the type of bean you are looking for
  * @param string $sql      sql    SQL query to find the desired bean, starting right after WHERE clause
  * @param array  $bindings values array of values to be bound to parameters in query
  *
  * @return array
  */
 public static function findAndExport($type, $sql = NULL, $bindings = array())
 {
     return self::$finder->findAndExport($type, $sql, $bindings);
 }
예제 #3
0
 /**
  * @see RedBean_Facade::find
  * The variation also exports the beans (i.e. it returns arrays).
  * 
  * @param string $type   type   the type of bean you are looking for
  * @param string $sql    sql    SQL query to find the desired bean, starting right after WHERE clause
  * @param array  $values values array of values to be bound to parameters in query
  *
  * @return array $arrays arrays
  */
 public static function findAndExport($type, $sql = null, $values = array())
 {
     return self::$finder->findAndExport($type, $sql, $values);
 }