______ function shows the last access time of a file ?
fileatime( )
filetime( )
fileaccess( )
SHOW ANSWERWhat is the syntax of the function that writes to a file in php ?
fwrite(“file pointer” ,”variable”);
write(“file pointer”);
file_write(“filepointer”);
SHOW ANSWERGive the syntax for the function to create directory
mkdir(“directory path” );
create_directory(“directory path”);
create_dir(“directory path”);
SHOW ANSWERAn example for a function to create a directory
mkdir(‘C:\wamp\www\Test’);
create_directory(‘C:\wamp\www\Test’);
create_dir(“directory path”);
SHOW ANSWERWhich function returns the filename portion of a stated path ?
basename( )
base()
fbase()
SHOW ANSWERWhich function mentions the free space in a directory ?
disk_free_space( )
freedisk( )
free_space_dir( )
SHOW ANSWERWhich function that resets file pointer to the beginning of the file stream ?
rewind( )
reset ()
freset( )
SHOW ANSWERWhich function closes the file opened by the process file pointer ?
pclose( )
close( )
fclose( )
SHOW ANSWERFunction in php that is used to remove an empty directory is _______
rmdir( )
removedir( )
remdir( )
SHOW ANSWERWhich function opens a process file pointer ?
popen( )
fpopen()
open( )
SHOW ANSWERThe small piece of information stored by client side is known as
Cookie
Session
Querystring
SHOW ANSWERThe small piece of information stored by server side is known as:
Session
Cookie
Querystring
SHOW ANSWERWhichis basically a temporary set of variables that exists only until the browser has shut down?
Session
Cookie
Querystring
SHOW ANSWER