Assume somefile.txt contains the following text on two lines: Mary:King Peter:Jones What will the file contain after the following instructions are executed? $someFile =fopen("somefile.txt","w"); fputs($someFile, "Ann:Porter\n"); fputs($someFile, "Dennis:Smith\n"); fclose($someFile);

Respuesta :

r3t40

The file will contain:

Mary:King Peter:JonesAnn:Porter

Dennis:Smith

<cursor>

Hope this helps.

Otras preguntas