Chpt 5 - PHP Programming w/MySQL 2nd Ed - Gosselin/Kokoska/Easterbrooks

Chpt 5 - PHP Programming w/MySQL 2nd Ed - Gosselin/Kokoska/Easterbrooks

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

binary file

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (20)

Section 1

(20 cards)

binary file

Front

Series of characters or bytes for which PHP attached no special meaning.

Back

copy

Front

Function that copies a file with PHP

Back

input stream

Front

Reads data from a resource, such as a file.

Back

handle

Front

A special type of variables that PHP uses to represent a resource such as a file.

Back

file_put_contents

Front

Function that writes or appends a text string to a file.

Back

flock

Front

Function that prevents multiple users from modifying a file simultaneously.

Back

stream

Front

A channel used for accessing a resource that you can read from and write to.

Back

readfile

Front

Function that prints the contents of a file.

Back

readdir

Front

Function that returns the file and directory names from the open directory.

Back

file permissions

Front

Defines the abilities to read, write, or execute a file (sometimes called modes).

Back

magic quotes

Front

Automatically adds backslashes(\)to any single quote ('), double quote ("), or NULL character contained in data that a user submits to a PHP script.

Back

Modes

Front

Another word for file permissions granted to users, groups, and others

Back

chmod

Front

Function that is used to change the permissions on a file.

Back

directory pointer

Front

A special type of variable that refers to the currently selected record in a directory listing.

Back

fopen

Front

Function that opens a stream to a text file.

Back

text file

Front

a document with only printable characters and a limited set of control or formatting characters.

Back

opendir

Front

Function to open a handle to the directory to iterate through the entries in the directory.

Back

output stream

Front

Writes data to a resource, such as a file.

Back

file_get_contents

Front

Function that reads the entire contents of a file into a string.

Back

file pointer

Front

A special type of variable that refers to the currently selected line or character in a file.

Back