Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/08/2009, 11:15
PJ100
 
Fecha de Ingreso: julio-2009
Mensajes: 64
Antigüedad: 15 años, 4 meses
Puntos: 0
Respuesta: Insertar datos en un archivo .inc.php en la 1ª linea con fopen() y fwrite(

No me funciona "x+" porque php lanza un error diciendo que el archivo ya existe.

Según la dirección que me diste, leí esto referente a "x+":

Create and open for reading and writing; place the file pointer at the beginning of the file. If the file already exists, the fopen() call will fail by returning FALSE and generating an error of level E_WARNING. If the file does not exist, attempt to create it. This is equivalent to specifying O_EXCL|O_CREAT flags for the underlying open(2) system call.

Supongo que no se puede hacer otra cosa, ¿no?