<?
if($id == 2) {
?>
html goes here
<?
}
else {
?>
if id is not 2 then something goes here
<?
}
?>
How can I write php+html in one file more beautiful without learning smarty?
|
|
You can use PHP's alternative syntax for control structures:
Note that short_open_tags is a php.ini directive that needs to be enabled explicitly, otherwise you would have to write |
|||||
|
|
You can implement the MVC (Model, View, Controler) design pattern, your code can be used as a modele to load the view:
In the view.php, you show the html page with only the echos for php variables and array. |
|||||||
|
|
I recommend HEREDOC for some HTML code. Like this:
Also, you can try an approach where you have two files: a php file and a phtml file. The php file is the main logic, then the phtml file is the html output. Like in your example,
|
|||||||||||
|
|
As many other suggested, you could use the MVC, or if you dont like to implement a strict MVC structure, you should anyway use a templating system. This doesnt mean that you have to learn smarty, you can write your own templating system, with just the function that you actually need. If youre working with designers and performance is not your first point, you can build an html file with simple placeholders where the dynamic content have to go, and then replace it with php (str_replace, preg_replace).. but this will slower your application. Example:
and your templating file:
This is really a basic example, and has 2 problems:
A simplier solution can be:
and php:
But echoing html should be reduced as possible, is not a good practice and it mix logic with content
|
|||
|
|
|
For better possible future (design) maintainability, I'd suggest something like this:
|
|||
|
|
|
I like and use soulmerge's method. But exit another more:
|
|||
|
|
|
Also check out this question for a number of very good suggestions: |
|||
|
|
|
I personally don't like using short tags as I find them inconsistent amongst files and prefer sticking to one method. You can instantly make it look a bit more readable with some simple changes like so:
A bit simpler than some of the other answers but also the way I'd find most readable. It's really about your own preference although a lot of other good methods have been suggested (this is just how I'd do it). |
|||
|
You could do it like this...
Buuut, if you want to make it easier for your designers, just use external files:
and use your predefined keywords to insert php calculated content (as %php generated content% getting replaced by 2 (1 + 1) in this example) |
||||
|
|
Adding to DaNieL's answer, you could do something like:
Example:
Result:
Anonymous functions only work for php 5.3 or higher |
||||
|
|
|
There's two cases really: 1) Template code. I'd recommend soulmerge's approach of the alternate syntax for control structures. 2) Short, view-helper PHP code that generates output (usually for later substitution) that doesn't necessarily merit it's own sub-template. For 2 I prefer something like:
I prefer this over any sort of wonky alternative that might involve The heredoc makes it easy to identify string output and even though I think the the breaking of the indentation is sort of ugly, it ends up being quite effective as your html output stands out like little sticky notes. That, and the fact that in my IDE (PDT), it gets nicely highlighted in green. (Not seen here in the SO highlighter...) so it's always explicit exactly what kind of "mode" I'm in. In contrast, the If your code gets more complex, then it might be time to refactor. I like heredoc because if I'm doing something ad-hoc, it'll stand out and become really obvious a couple of months down the line (ad-hoc tends to degenerate to ball of mud as you add requirements ) when I've got 40 lines of heredoc that might have started as 5. When I come back and look at my code and develope the non-totally-ad-hoc version, it's a lot easier to identify the parts of the file where I was being bad. This goes back to the sticky notes, green highlighting comment I made about the indentation as well. |
|||
|
|
|
By using this - PHP echo. If that's what you want, that is - it may be more readable to continue what you're doing if you're outputting large amounts of HTML. |
|||
|
|
|
|||||||
|