Ejemplo de funciones que trabajan con fichero php v3
En esta ocasión mostrare un Ejemplo de funciones que trabajan con fichero php v3 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>EjemplosDP</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> </head> <body> <section> <?php //readfile //leer archivo readfile('hola.txt'); //feof comprueba si el archivo ya esta al final $archivo = fopen('txt.txt'); while(!feof($archivo)){ echo $fgets($archivo)."<br>"; } //file transfiere un arhcivo completo a un array $lineas = file('https://google.hn'); //mostrando da...