ホームページ > 記事 > PHPフレームワーク > Yii フレームワークを使用して映画 Web サイトを作成する
インターネットの普及と人々の映画愛に伴い、映画 Web サイトは人気のある Web サイトの種類になりました。動画 Web サイトを作成する場合、適切なフレームワークが非常に必要です。 Yii フレームワークは、使いやすく、パフォーマンスに優れた高性能 PHP フレームワークです。この記事では、Yii フレームワークを使用して映画 Web サイトを作成する方法を検討します。
Yii フレームワークを使用する前に、最初にフレームワークをインストールする必要があります。 Yii フレームワークのインストールは非常に簡単です。ターミナルで次のコマンドを実行するだけです:
composer create-project yiisoft/yii2-app-basic
このコマンドは、現在のディレクトリに基本的な Yii2 アプリケーションを作成します。これで、映画 Web サイトの作成を開始する準備が整いました。
Yii フレームワークは、データベースの操作を簡単にする方法である ActiveRecord を提供します。この例では、映画 ID、タイトル、監督、俳優、年、ジャンル、評価などの情報を含む、movies という名前のデータ テーブルを作成します。テーブルを作成するには、ターミナルでアプリケーション ルート ディレクトリに移動し、次のコマンドを実行します。
php yii migrate/create create_movies_table
次に、生成された移行ファイルを次の内容に編集します。
<?php use yiidbMigration; /** * Handles the creation of table `{{%movies}}`. */ class m210630_050401_create_movies_table extends Migration { /** * {@inheritdoc} */ public function safeUp() { $this->createTable('{{%movies}}', [ 'id' => $this->primaryKey(), 'title' => $this->string()->notNull(), 'director' => $this->string()->notNull(), 'actors' => $this->text()->notNull(), 'year' => $this->integer()->notNull(), 'genre' => $this->string()->notNull(), 'rating' => $this->decimal(3,1)->notNull(), ]); } /** * {@inheritdoc} */ public function safeDown() { $this->dropTable('{{%movies}}'); } }
次に、移行を実行します。映画のデータシートを作成します。
php yii migrate
Yii フレームワークでは、ActiveRecord を使用してデータテーブルのモデルを定義するのが非常に簡単です。モデル ディレクトリに Movie という名前のモデルを作成し、モデル定義でテーブル名とフィールド名を指定できます。
<?php namespace appmodels; use yiidbActiveRecord; class Movie extends ActiveRecord { /** * {@inheritdoc} */ public static function tableName() { return '{{%movies}}'; } /** * {@inheritdoc} */ public function rules() { return [ [['title', 'director', 'actors', 'year', 'genre', 'rating'], 'required'], [['year'], 'integer'], [['rating'], 'number'], [['actors'], 'string'], [['title', 'director', 'genre'], 'string', 'max' => 255], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'title' => 'Title', 'director' => 'Director', 'actors' => 'Actors', 'year' => 'Year', 'genre' => 'Genre', 'rating' => 'Rating' ]; } }
ムービー コントローラーは、ムービー リストの追加、編集、削除、表示のリクエストなど、ムービーに関するすべてのリクエストを処理します。コントローラ ディレクトリに MovieController という名前のコントローラを作成し、次のコードを追加します。
<?php namespace appcontrollers; use Yii; use yiiwebController; use appmodelsMovie; class MovieController extends Controller { /** * Shows all movies. * * @return string */ public function actionIndex() { $movies = Movie::find()->all(); return $this->render('index', ['movies' => $movies]); } /** * Creates a new movie. * * @return string|yiiwebResponse */ public function actionCreate() { $model = new Movie(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['index']); } return $this->render('create', [ 'model' => $model, ]); } /** * Updates an existing movie. * * @param integer $id * @return string|yiiwebResponse * @throws yiiwebNotFoundHttpException */ public function actionUpdate($id) { $model = $this->findModel($id); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['index']); } return $this->render('update', [ 'model' => $model, ]); } /** * Deletes an existing movie. * * @param integer $id * @return yiiwebResponse * @throws yiiwebNotFoundHttpException */ public function actionDelete($id) { $this->findModel($id)->delete(); return $this->redirect(['index']); } /** * Finds the Movie model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * * @param integer $id * @return ppmodelsMovie * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Movie::findOne($id)) !== null) { return $model; } throw new NotFoundHttpException('The requested page does not exist.'); } }
その中で、actionIndex メソッドはすべてのムービーのリストを表示し、actionCreate メソッドと actionUpdate メソッドは作成および作成に使用されます。ムービーを編集するには、actionDelete メソッドでムービーを削除します。
次に、ムービー リストの表示、ムービーの追加、ムービー フォームの編集を行うためのビュー ファイルを作成する必要があります。ビュー ファイルを views/movie ディレクトリに保存します。
<?php use yiihelpersHtml; use yiigridGridView; /* @var $this yiiwebView */ /* @var $movies appmodelsMovie[] */ $this->title = 'Movies'; $this->params['breadcrumbs'][] = $this->title; ?> <h1><?= Html::encode($this->title) ?></h1> <p> <?= Html::a('Create Movie', ['create'], ['class' => 'btn btn-success']) ?> </p> <?= GridView::widget([ 'dataProvider' => new yiidataArrayDataProvider([ 'allModels' => $movies, 'sort' => [ 'attributes' => [ 'title', 'director', 'year', 'genre', 'rating', ], ], ]), 'columns' => [ ['class' => 'yiigridSerialColumn'], 'title', 'director', 'actors:ntext', 'year', 'genre', 'rating', ['class' => 'yiigridActionColumn'], ], ]); ?>
<?php use yiihelpersHtml; use yiiwidgetsActiveForm; /* @var $this yiiwebView */ /* @var $model appmodelsMovie */ $this->title = 'Create Movie'; $this->params['breadcrumbs'][] = ['label' => 'Movies', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?> <h1><?= Html::encode($this->title) ?></h1> <div class="movie-form"> <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, 'title')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'director')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'actors')->textarea(['rows' => 6]) ?> <?= $form->field($model, 'year')->textInput() ?> <?= $form->field($model, 'genre')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'rating')->textInput() ?> <div class="form-group"> <?= Html::submitButton('Save', ['class' => 'btn btn-success']) ?> </div> <?php ActiveForm::end(); ?> </div>
<?php use yiihelpersHtml; use yiiwidgetsActiveForm; /* @var $this yiiwebView */ /* @var $model appmodelsMovie */ $this->title = 'Update Movie: ' . $model->title; $this->params['breadcrumbs'][] = ['label' => 'Movies', 'url' => ['index']]; $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]]; $this->params['breadcrumbs'][] = 'Update'; ?> <h1><?= Html::encode($this->title) ?></h1> <div class="movie-form"> <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, 'title')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'director')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'actors')->textarea(['rows' => 6]) ?> <?= $form->field($model, 'year')->textInput() ?> <?= $form->field($model, 'genre')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'rating')->textInput() ?> <div class="form-group"> <?= Html::submitButton('Save', ['class' => 'btn btn-primary']) ?> </div> <?php ActiveForm::end(); ?> </div>
これで、Yii フレームワークのムービー Web サイトの作成が完了しました。 , all コードの準備はすべて完了しました。映画 Web サイトをローカルで実行するには、ターミナルでアプリケーション ルート ディレクトリに移動し、次のコマンドを実行します。
php yii serve
これにより、ローカル Web サーバーが起動し、アプリケーションがポート 8000 で実行されます。これで、ブラウザで http://localhost:8000/ を開いて映画 Web サイトを表示できるようになります。
この記事では、Yii フレームワークを使用して映画 Web サイトを作成する方法を説明しました。 Yii フレームワークを使用すると、開発がスピードアップされ、ActiveRecord、MVC アーキテクチャ、フォーム検証、セキュリティなどの多くの便利な機能が提供されます。 Yii フレームワークの詳細については、そのドキュメントを参照してください。
以上がYii フレームワークを使用して映画 Web サイトを作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。