0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【ロジックとViewの分離について】

Last updated at Posted at 2019-04-28

レガシーPHPからの脱却

①「ロジック」と「View」の分離を実現

WEBアプリケーションは以下の2つの役割によって構成されている。

ロジック... データベースとの連携(DBのデータの取得、更新、保存)処理の部分。
ビュー  ... 実際にデータを表示する部分  

この2つの役割を明確に分けることによって、コードの可読性を上げることを目的とする。
(可読性とは単純に読みやすさのこと)

例えば、PHPの掲示板サービスだと、

ロジック


$sql = "SELECT * FROM 'post' ORDER BY created at desc";
$result = $mysqli->query( $sql );
$posts = array();

if ( $result 
     &&  mysqli_num_rows( $result ) ) {
     while( $post = mysqli_fetch_assoc( $result ) )
            $posts[] = $post; 
     }
}

mysqli_close();

ビュー(画面に表示する部分)

if ( count( $posts ) > 0 ) {
     foreach( $posts as $post ) {
            print htmlspecharacter( $post['content'] );
     }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?