Home > Backend Development > PHP Tutorial > About laravel affairs

About laravel affairs

WBOY
Release: 2016-07-06 13:52:28
Original
885 people have browsed it

<code>        DB::beginTransaction();
        foreach($checkArr[0] as $v){
            $id = explode('-',$v)[0];
            $rank = explode('-',$v)[1] != '' ? explode('-',$v)[1] : 5;
            if(index_friendlink::where('id','=',$id)->pluck('online') == 1){
                $updrank = index_friendlink::find($id);
                $updrank -> rank = $rank;
                $updrank -> save();
            }
        }
        $ret = index_friendlink::where('online','=','1')->get();
        foreach($ret as $v) {
            $retRank[] = $v->rank;
        }
        if (count($retRank) != count(array_unique($retRank))) {
            DB::rollback();
            echo '2';
            exit;
        }
        DB::commit();
        
        
        怎么回滚不了,第一次使用laravel,求大神解答,数据库已改成innodb</code>
Copy after login
Copy after login

Reply content:

<code>        DB::beginTransaction();
        foreach($checkArr[0] as $v){
            $id = explode('-',$v)[0];
            $rank = explode('-',$v)[1] != '' ? explode('-',$v)[1] : 5;
            if(index_friendlink::where('id','=',$id)->pluck('online') == 1){
                $updrank = index_friendlink::find($id);
                $updrank -> rank = $rank;
                $updrank -> save();
            }
        }
        $ret = index_friendlink::where('online','=','1')->get();
        foreach($ret as $v) {
            $retRank[] = $v->rank;
        }
        if (count($retRank) != count(array_unique($retRank))) {
            DB::rollback();
            echo '2';
            exit;
        }
        DB::commit();
        
        
        怎么回滚不了,第一次使用laravel,求大神解答,数据库已改成innodb</code>
Copy after login
Copy after login

Your rollback conditions are determined using PHP, and the transaction should be separated from PHP and can be implemented directly in MySQL. For example, if deletion or insertion fails or rollback does not reach commit. Check out this question

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template