ROXBURY Posted April 25, 2012 Report Share Posted April 25, 2012 queria saber si es que es posible o cuales funciones se requieren para abrir un archivo .php para buscar una palara y luego reemplazarla y luego guardar el mismo archivo tengo algo asi:<?php$file = 'index.php';$handle = fopen($file, 'r+'); // abro como lectura$dato = fread($handle, filesize($file)); $str = "seba";$order = array("seba");$replace = 'seba'; // Procesa primero seba así no es convertido dos veces.$newstr = str_replace($order, $replace, $str); fwrite($handle, $newstr); fclose($handle);?> pero me escribe, no me reemplaza el seba que tengo dentro de index.php Link to comment Share on other sites More sharing options...
cañangasñangas Posted May 5, 2012 Report Share Posted May 5, 2012 (edited) prueba con esto <?php //editar aca $file = "file.php"; $str = "me meo"; $replace "ME MEO!!"; //no editar nada de aca para abajo $open = fopen($file, "r"); $read = fread($open, filesize($file)); $rep = str_replace($str, $replace, $read); fclose($open); $open = fopen($file, "w+"); fwrite($open, $rep); fclose($open); ?> Edited May 5, 2012 by cañangasñangas Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now