Skip to content

1.14

Compare
Choose a tag to compare
@jorgecc jorgecc released this 26 Dec 14:14
· 209 commits to master since this release
  • 1.14 2019-dec-26
    • method where() works with associative array and arguments
$results = $dao->select("*")->from("table")
    ->where('condition=:p1 and condition2=:p2',['p1'=>'Coca-Cola','p2'=>1])
    ->toList();