Hola, explorer, gracias por responder. Tengo una duda: sin usar plantillas, ¿cuál de estas formas sería mejor para mostrar mucho código HTML?:
Método 1:
Using php Syntax Highlighting
if (is_single()) {
//now we just close PHP tag
?>
</style>
<script>
<blah blah blah>
<?php
//open it back. here is your PHP again. easy!
}
?>
Coloreado en 0.021 segundos, usando
GeSHi 1.0.8.4
Método 2:
Using php Syntax Highlighting
echo <<< EOT
in here is your string
it has the same variable substitution rules
as a double quoted string.
when you end it, put the indicator word at the
start of the line (no spaces before it)
and put a semicolon after it
EOT;
Coloreado en 0.009 segundos, usando
GeSHi 1.0.8.4
El primero me queda raro pero es cómodo y el segundo no me convence, pero leí que se usan mucho las dos formas.
¿ Cuál es mejor ?