find

Syntax
bool find(
  string $where
  optional string $bindarr=false,
  optional string $pkeysArr=false,
  optional array $extra=array()
  )

Description

This function is part of both Extended Active Record and Active Record


Parameters

$where

$bindarr

$pkeysArr

$extra

$extra provides an optional set of parameters

ParameterDescription
limit Select Record Limit
offset Select Record Offset

Usage

$person = new Person;
$person->find('id=1');