PHP - ¿Cómo muestro un código php?

 
Vista:

¿Cómo muestro un código php?

Publicado por Cosculluela (12 intervenciones) el 22/02/2015 23:02:11
Hola de nuevo, necesito ayuda con un simple código, bueno necesito saber cómo puedo visualizar en mi mismo navegador un código en PHP, por ejemplo yo introduzco la url: "www.test.com/ver.php" y me muestre el código php de: "test.php"... No sé si me expliqué.
Intenté con esto pero no me funciona o éste no es?:
1
2
<?php  $file = fopen("test.php","r");
echo $file;?>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil

¿Cómo muestro un código php?

Publicado por Manuel Emilio Vargas Herrera (154 intervenciones) el 23/02/2015 00:15:18
Podrías intentar algo como lo siguiente (solo tienes que colocar en la variable "$texto_archivo" el texto del archivo):

1
2
3
4
5
6
7
8
9
10
11
<html>
<body>
<?php
$texto_archivo = "<?php\n" . '$' . "vocales = array('a', 'e', 'i', 'o', 'u');\n?>";
$texto_archivo = str_replace("<", "&lt;", $texto_archivo);
$texto_archivo = str_replace(">", "&gt;", $texto_archivo);
$texto_archivo = str_replace("\n", "<br>", $texto_archivo);
echo $texto_archivo;
?>
</body>
</html>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar