sql >> データベース >  >> RDS >> Mysql

Laravel5.1でポスト効率的な方法でフォロワーを獲得する

    array_reduce のようなものを使用できます followersを取得した後 。

    例:

    $followers = array_reduce($post->followers, function ($c, $i) {
        $c[] = $i->user_id;
    }, []);
    

    $followers すべてのフォロワーidを含む s。




    1. SQLAlchemyORMを使用した一括挿入

    2. コードを記述せずにODBC接続属性を設定する

    3. MySQLのenumまたはchar(1)

    4. PHP、MySQLなど全体で日付を管理するための最良の方法は何ですか?