redbean

    1熱度

    1回答

    我使用RedBeanPHP這樣: $banners = R::findAll('banner'); 之後,我希望通過它的索引來訪問每個元素,說: $banner1 = $banners[2]; 但這樣RedBeanPHP嘗試檢索數據庫表中的列id = 2的橫幅 按索引結果訪問元素的方式是什麼?

    1熱度

    1回答

    我正在使用redbeanPHP ORM和mysql。我有以下表格: CREATE TABLE `mast` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `note` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `geolocation` varchar(255) COLLATE ut

    0熱度

    2回答

    我已經仿照這樣的關係是RedBeanPHP: Car id color ownPart Part id name 所以紅豆創建SQL表預期: Car id color Part id name car_id 這個偉大的工程。 但是,我在我的數據庫中有其他表格,例如一個User,也有一個car_id識別用戶汽車。 當我想通過 ​​ 查詢所有Car S和它的孩子(Part S)

    1熱度

    1回答

    我正在嘗試使用文件來設置與可以包含在其他地方的RedBeanPHP的數據庫連接。例如: file1.php <?php require_once '../vendor/autoload.php'; use RedBean_Facade as R; R::setup(); ?> file2.php <?php require_once 'file1.php'; R::deb

    2熱度

    1回答

    在我的應用程序中,成員實體從預先定義的一組問題實體中選擇一個。 我保存並迭代它們作爲共享列表($ member-> sharedQuestion)。 現在我需要對它們進行排名,所以我通過名爲'position'的鏈接bean(member_question)添加了另一列。 我的問題是 - 我可以讓redbean檢索由'position'列指定的問題嗎? 我現在做一個 foreach($member

    2熱度

    1回答

    紅豆在其API是一個REST服務器,直到3.5版 http://redbeanphp.com/manual3_0/rest_server 我想知道在哪裏可以找到RedBean_Plugin_BeanCanResty爲紅豆4?因爲它不再在API中列出。這還能用嗎?還是已棄用? 爲什麼在BeanCan服務器了:

    1熱度

    2回答

    我開始使用RedbeanPHP和Codeigniter。在Codeigniter手冊中,如果您從控制器傳輸對象到查看 - 對象的屬性變爲數組。 我嘗試從控制器中獲取數組(對象的redbeanphp)。 例如: class Welcome extends CI_Controller { public function index() { $this->load->libra

    1熱度

    1回答

    我有以下結構 USER user_id name EVENT event_id user_id event_name 我怎麼能寫內加入紅豆? SELECT * FROM event e join user u on u.user_id = e.user_id 還我怎樣才能改變redbeans

    0熱度

    1回答

    我使用redbeanphp這樣 $r = R::find('chat', 'room_id = ? AND time > ? ORDER BY time ASC', array($w->id, $_POST['latest_timestamp'])); 現在我一有bean對象的列表內$ R那麼有沒有什麼辦法來訪問而無需將其轉換爲陣行? (我知道我不能用foreach使用它!)

    0熱度

    1回答

    我有三個表 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