Created
July 17, 2012 14:24
-
-
Save mindplay-dk/3129696 to your computer and use it in GitHub Desktop.
Strongly-typed views with PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Example: strongly typed view with PHP. | |
* | |
* Rather than traditional "flat views", why not put your views | |
* in a dedicated namespace and declare them as classes? | |
* | |
* Some advantages: | |
* | |
* - IDE support (autocomplete, use of type-hints) | |
* - Better performance when rendering many times during same request | |
* - Reflection support (enables meta-programming techniques) | |
* - Provides a location for dedicated helper-methods for complex view-specific logic | |
*/ | |
namespace app\views; | |
class UserProfile | |
{ | |
public $name; | |
public $position; | |
public $photo_url; | |
public function render() { | |
?> | |
<div class="user-profile"> | |
<img src="<?= $this->photo_url ?>" /> | |
<h1><?= htmlspecialchars($this->name) ?></h1> | |
<h2><?= htmlspecialchars($this->position) ?></h2> | |
</div> | |
<? | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment