我已經仿照這樣的關係是RedBeanPHP: Car
id color ownPart
Part
id name
所以紅豆創建SQL表預期: Car
id color
Part
id name car_id
這個偉大的工程。 但是,我在我的數據庫中有其他表格,例如一個User,也有一個car_id識別用戶汽車。 當我想通過 查詢所有Car S和它的孩子(Part S)
我開始使用RedbeanPHP和Codeigniter。在Codeigniter手冊中,如果您從控制器傳輸對象到查看 - 對象的屬性變爲數組。 我嘗試從控制器中獲取數組(對象的redbeanphp)。 例如: class Welcome extends CI_Controller {
public function index() {
$this->load->libra
我使用redbeanphp這樣 $r = R::find('chat', 'room_id = ? AND time > ? ORDER BY time ASC', array($w->id, $_POST['latest_timestamp']));
現在我一有bean對象的列表內$ R那麼有沒有什麼辦法來訪問而無需將其轉換爲陣行? (我知道我不能用foreach使用它!)
我有三個表 USER
user_id,name
EVENT
event_id, name,desc
PARTICIPATION
id, type
1 yes
2 no
3 maybe
我想處理表user_event_participation id , user_id,event_id,participation_id
1