File tree 1 file changed +14
-1
lines changed
1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -517,7 +517,7 @@ $router->get('/profile', function (View $view) {
517
517
518
518
$router->get('/blog/post', function (View $view) {
519
519
// It looks for a view with path: __DIR__/../views/blog/post.phtml
520
- return $view->make('blog.post', ['user ' => 'Jack' ]);
520
+ return $view->make('blog.post', ['post ' => $post ]);
521
521
});
522
522
523
523
$router->dispatch();
@@ -527,6 +527,19 @@ There is also some points:
527
527
* View files must have the ".phtml" extension (e.g. ` profile.phtml ` ).
528
528
* You must separate sub-directories with ` . ` (e.g. ` blog.post ` for ` blog/post.phtml ` ).
529
529
530
+ View files are pure PHP or mixed with HTML.
531
+ You should use PHP language with template style in the view files.
532
+ This is a sample view file:
533
+
534
+ ``` php
535
+ <h1 ><?php echo $title ?></h1 >
536
+ <ul >
537
+ <?php foreach ($posts as $post): ?>
538
+ <li ><?php echo $post['content'] ?></li >
539
+ <?php endforeach ?>
540
+ </ul >
541
+ ```
542
+
530
543
### Route Names
531
544
532
545
You can assign names to your routes and use them in your codes instead of the hard-coded URLs.
You can’t perform that action at this time.
0 commit comments