PHP Set 6 Flashcards
How can you read a file in PHP and what is the syntax?
readfile() function allows you to read a file and write it to the output buffer
Syntax:
readfile(string $filename, bool $use_include_path=false, resource $context): int | false
What does the readile function return?
Returns the number of bytes read from the file on success or false on failure
How do you open a file and what is the syntax?
Using the fopen() function
Syntax:
fopen(string $filename, string $mode, bool $use_include_path=false, resource $context): resource | false
What does the fopen function return?
Returns a file pointer resource on success or false on failure
What are the possible modes you can select when opening a file?
- ‘r’ is to open for reading only
- ‘r+’ is to open for reading and writing
- ‘w’ is to open for writing only
- ‘w+’ is to open for reading and writing
- ‘a’ is to open for writing only
- ‘a+’ is to open for reading and writing
- ‘x’ is to create and open for writing only
- ‘x+’ is to create and open for reading and writing
- ‘c’ is to open the file for writing only
- ‘c+’ is to open the file for reading and writing
What is the difference between ‘w’, ‘a’, ‘x’, and ‘c’ file open modes since they are all used for writing only?
w places the file pointer at the beginning of the file and truncates the file to zero length before writing. If the file does not exist it will try to create it
a places the file pointer at the end of the file. fseek function has not effect as writes are always appended. If the file does not exist it will try to create it
x places the file pointer at the beginning of the file. If the file already exists the open call will fail and an E_WARNING error will be generated
c positions the file pointer at the beginning of the file. It will not truncate it or throw an error if the file already exists.
What function is used to read from an open file and what is the syntax?
Use the fread() function to read up to a specified number of bytes from the stream created by fopen()
Syntax:
fread(resource $stream, int $length): string | false
What does the fread function return?
Returns the read data as a string on success or false on failure
How can you get the size of a file in bytes?
Using the filesize(string $filename) function
How do you close a file?
Using the fclose(resource $stream) function
What does the fgets function do and what is its syntax?
It is used to read a single line from an opened file
Syntax:
fgetsIresource $handle, int $length=?): string | false
What does the fgets function return?
Returns a string of up to length-1 bytes read from the file on success or false on failure
What is the difference between fread and fgets?
fread is a binary-safe file read and reads up to the number of bytes that must be specified.
fgets gets a line from a file pointer, it reads a line and stops when it encounters a newline if a length is not provided
What does the fclose function return?
Returns true on success or false on failure
What does the feof function do and what is its syntax?
Checks if the end of file has been reached
Syntax:
feof(resource $stream): bool
What does the feof function return?
Returns true if EOF has been reached or an error occurs. Returns false otherwise
What function is used to write to a file and what is its syntax?
Use the fwrite() function to write to a file open for writing
Syntax:
fwrite(resource $stream, string $string, int $length): int | false
What does the fwrite function return?
Returns the number of bytes written on success or false on error
What do you need to do in order to enable uploading files to a web server?
Configure the php.ini file and specify file_uploads = on
Create an HTML form with a file upload input
On the server side, use the move_uploaded_file function to move the uploaded file to a space on the server’s hard disk
Why should you use filters in PHP?
Many web application receive external input and you should always validate external data before using it
What are the 2 types of filters?
- Validating data: Determines if data is in the proper form and meets certain qualifications
- Sanitizing data: Removes illegal characters from the data so it may alter the data
What function is used to filter input and what is the syntax?
filter_var() filters a variable with a specified filter
Syntax:
filter_var($var, filtername, options)
var is the variable to filter
filtername is the ID or name of the filter to use (FILTER_DEFAULT by default which is not filtering)
options specifies one or more flags to use
What does the filter_var function return?
Returns the filtered data on success or false on failure
What are the possible validate filters available?
- FILTER_VALIDATE_BOOL
- FILTER_VALIDATE_BOOLEAN
- FILTER_VALIDATE_DOMAIN
- FILTER_VALIDATE_EMAIL
- FILTER_VALIDATE_FLOAT
- FILTER_VALIDATE_INT
- FILTER_VALIDATE_IP
- FILTER_VALIDATE_MAC
- FILTER_VALIDATE_URL
- FILTER_VALIDATE_REGEXP
What are the possible sanitize filters?
- FILTER_SANITIZE_EMAIL
- FILTER_SANITIZE_ENCODED
- FILTER_SANITIZE_MAGIC_QUOTES
- FILTER_SANITIZE_ADD_SLASHES
- FILTER_SANITIZE_NUMBER_FLOAT
- FILTER_SANITIZE_NUMBER_INT
- FILTER_SANITIZE_SPECIAL_CHARS
- FILTER_SANITIZE_FULL_SPECIAL_CHARS
- FILTER_SANITIZE_STRING
- FILTER_SANITIZE_STRIPPED
- FILTER_SANITIZE_URL
- FILTER_UNSAFE_RAW
What are the options available for FILTER_VALIDATE_URL?
- FILTER_FLAG_SCHEME_REQUIRED: Ensures URL is RFC compliant
- FILTER_FLAG_HOST_REQUIRED: Ensures URL includes host name
- FLITER_FLAG_PATH_REQUIRED: Ensures the URL has a path after the domain name
- FILTER_FLAG_QUERY_REQUIRED: Ensures the URL has a query string attched