PHP nasıl yapabilirim
$myDBClass->users()->limit(5);//output you limited users to 5
$myDBClass->comments()->limit(3);//output you limited comments to 3
what I meant is nested methods or nested class (I don't know!) so when I call the limit method as a child of users it will know that I am calling it from "users" method -or class- and when I call limit method -or class!- from comments It also knows that.
Bu işi yapmak için bir PHP sınıfı için olası yapı nedir?
Ben veritabanı için kendi sınıfının üzerinde çalışıyorum çünkü bu sorunun nedeni bu yüzden kolayca böyle bir şey kullanabilirsiniz
$DB->comments()->id(" > 3")->limit(10);
to generate the sql code "select * from comments where id > 3 limit 10" Thanks