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 datos del array
foreach($lineas as $v)
{
//echo funcion pa mostrar chars html
echo htmlspecialchars($v);
}
//file_get_contens almacena contenido de un archivo en una cadena de texto
echo file_get_contents('https://google.hn');
//file put content abre el archivo recibe parametros cambia contenido y guarda los cambios
file_put_contents('txt.txt','Udemy...Nelly!',FILE_APPEND);
$archivo=fopen('txt.txt','r+');
fwrite($archivo,'Diva');
//rewind devuelve el puntero al inicio del archivo
rewind($archivo);
fwrite($archivo,'Nelleo');
rewind($archivo);
//fseek
fseek($archivo,5)."<br>";
//ftell
echo ftell($archivo)."<br>";
//fread lee archivo con dos parametros como ser ruta y bites que leera
echo fread($archivo,12)."<br>"
fclose($archivo);
?>
</section>
</body>
</html>
Funciones generales para obtener y mostrar datos de un fichero.
<!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 datos del array
foreach($lineas as $v)
{
//echo funcion pa mostrar chars html
echo htmlspecialchars($v);
}
//file_get_contens almacena contenido de un archivo en una cadena de texto
echo file_get_contents('https://google.hn');
//file put content abre el archivo recibe parametros cambia contenido y guarda los cambios
file_put_contents('txt.txt','Udemy...Nelly!',FILE_APPEND);
$archivo=fopen('txt.txt','r+');
fwrite($archivo,'Diva');
//rewind devuelve el puntero al inicio del archivo
rewind($archivo);
fwrite($archivo,'Nelleo');
rewind($archivo);
//fseek
fseek($archivo,5)."<br>";
//ftell
echo ftell($archivo)."<br>";
//fread lee archivo con dos parametros como ser ruta y bites que leera
echo fread($archivo,12)."<br>"
fclose($archivo);
?>
</section>
</body>
</html>
Funciones generales para obtener y mostrar datos de un fichero.
Comentarios
Publicar un comentario