<?php
suppose 10 lines of php code is here;
?>
and
<?php ?>
<?php ?>...10 times
same above script 10 times in separate tags.
will this create any performance difference between two code if any please describe.
and
same above script 10 times in separate tags. will this create any performance difference between two code if any please describe. |
|||||
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
There might be slight difference between these two styles. However, compared to performance, READABILITY is far more important. Never do any minor performance improvement at the cost of readability. |
|||
|
|
There will be no difference wither you do it that way or the other. However, if you are using a templating engine or NOT will make a huge difference. Templating Engines come at a heavy cost. |
|||
|
|