Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は最近それを使い始めましたが、私のやり方が好きではありませんでした。提案が欲しかった...
私は次のような例を使用しています:
$all = R::findAll('needle', ' ORDER BY title LIMIT 2 ');
パラメータバインディングを使用する必要があることを除いて、提案されたソリューションは問題ないと思います。そうしないと、SQL インジェクションが発生する可能性があります。
$page=1; $limit=10; $all=R::findAll('needle', 'ORDER BY title LIMIT ?,? ',array((($page-1)*$limit),$limit));