コード例 #1
0
ファイル: index.php プロジェクト: Alex4S/PHP2_STUDY
<?php

require __DIR__ . '/autoload.php';
$news = \App\Models\News::findLastRows();
include __DIR__ . '/App/Views/AllNews.php';
コード例 #2
0
ファイル: News.php プロジェクト: scorp7mix/pr-of-it.php2
 protected function actionIndex()
 {
     $this->view->twigDisplay('index.html.twig', ['lastNews' => \App\Models\News::findLastRows(3)]);
 }