Element index for package CGI
[ a ]
[ c ]
[ e ]
[ f ]
[ g ]
[ i ]
[ k ]
[ m ]
[ n ]
[ p ]
[ r ]
[ s ]
[ t ]
[ u ]
[ v ]
top
c
- $contentType
- in file IOFilter.php, variable IOFilter::$contentType
The content type of the data, which if provided will be sent as an HTTP Content-Type header by sendHeaders().
- $contentType
- in file ServerPush.php, variable ServerPush::$contentType
The HTTP content type of the pushed document. This can be either multipart/mixed or multipart/x-mixed-replace, depending on what you tell the constructor method.
- CGI
- in file CGI.php, method CGI::CGI()
Constructor method.
- CGI
- in file CGI.php, class CGI
CGI is a class that is used to give GET and POST auto-generated variables their own distinct namespace, so as not to conflict with other auto-generated variables, such as Cookie data. The CGI class gets its data from the $HTTP_POST_VARS and $HTTP_GET_VARS hashes.
- CGI.php
- procedural page CGI.php
- Cookie.php
- procedural page Cookie.php
- cgi_files
- in file CGI.php, function cgi_files()
- cgi_force_http
- in file CGI.php, function cgi_force_http()
- cgi_force_https
- in file CGI.php, function cgi_force_https()
- cgi_is_https
- in file CGI.php, function cgi_is_https()
- cgi_make_query
- in file CGI.php, function cgi_make_query()
- cgi_param
- in file CGI.php, function cgi_param()
- cgi_params
- in file CGI.php, function cgi_params()
- cgi_rewrite_filter
- in file CGI.php, function cgi_rewrite_filter()
- cgi_translate_uri
- in file CGI.php, function cgi_translate_uri()
- cgi_verify
- in file CGI.php, function cgi_verify()
- cgi_verify_request_method
- in file CGI.php, function cgi_verify_request_method()
- Cookie
- in file Cookie.php, method Cookie::Cookie()
Constructor method.
- Cookie
- in file Cookie.php, class Cookie
Cookie is a class that is used to give auto-generated Cookie variables their own distinct namespace, so as not to conflict with other auto-generated variables, such as CGI data. The Cookie class gets its data from the $HTTP_COOKIE_VARS hash.
top
e
- $error
- in file CGI.php, variable CGI::$error
Contains an error message describing the reason for a verify () failure.
- $error
- in file IOFilter.php, variable IOFilter::$error
Contains an error message that may have been created during the execution of a transform() call.
- $extraHeaders
- in file IOFilter.php, variable IOFilter::$extraHeaders
A list of extra HTTP headers to send by sendHeaders().
- end
- in file ServerPush.php, method ServerPush::end()
Prints a closing key string, ending the transmission.
top
f
- $files
- in file CGI.php, variable CGI::$files
Contains a list of the names of all the file upload variables passed to the current script through the POST method.
- forceHttp
- in file CGI.php, method CGI::forceHttp()
Force the current page to be made over HTTP.
- forceHttps
- in file CGI.php, method CGI::forceHttps()
Force the current page to be made over HTTPS. Note: Doesn't check the response from site_secure(), simply reloads the page.
top
g
- get
- in file UploadedFile.php, method UploadedFile::get()
Gets the contents of the file as one big fat string, so you can do with them as you please.
top
i
- IOFilter.php
- procedural page IOFilter.php
- IOFilter
- in file IOFilter.php, method IOFilter::IOFilter()
Constructor method.
- IOFilter
- in file IOFilter.php, class IOFilter
IOFilter provides the skeleton for creating filters on incoming or outgoing data, including the automatic sending of relevant HTTP headers. Its purpose is to be extended through subclassing to create custom filters (ie. an XSLT filter).
- isHttps
- in file CGI.php, method CGI::isHttps()
Verifies that the current request is made through a secure socket layer (SSL).
top
k
- $key
- in file ServerPush.php, variable ServerPush::$key
The unique key used to separate pushed data blocks. This value is generated on the fly for you.
top
m
- makeQuery
- in file CGI.php, method CGI::makeQuery()
Creates a URL query string (ie. ?foo=bar&foo2=bar2)
- move
- in file UploadedFile.php, method UploadedFile::move()
Moves the file to the specified location. The $to_file parameter is optional. You can include the name of the file in the first paraemeter, or use the second, but if so, make sure the $to_path parameter does not end with a trailing slash (/).
top
n
- $name
- in file UploadedFile.php, variable UploadedFile::$name
The name of the uploaded file.
- $name
- in file IOFilter.php, variable IOFilter::$name
A name for this filter.
top
p
- $param
- in file CGI.php, variable CGI::$param
Contains a list of the names of all the variables passed to the current script through either the GET or POST methods.
- $param
- in file Cookie.php, variable Cookie::$param
Contains a list of the names of all the cookie variables available to the current script.
- parseUri
- in file CGI.php, method CGI::parseUri()
Takes the global $REQUEST_URI variable and parses it as if
- prependDot
- in file Cookie.php, method Cookie::prependDot()
Returns the domain passed to it, with a prepended dot (.) if
top
r
- rotate
- in file ServerPush.php, method ServerPush::rotate()
Sends a list of blocks with a delay of $sleep seconds
top
s
- $size
- in file UploadedFile.php, variable UploadedFile::$size
The size of the uploaded file.
- ServerPush.php
- procedural page ServerPush.php
- send
- in file ServerPush.php, method ServerPush::send()
Sends a single block to the visitor. If $more is false, send() calls end() when it is done. $contentType is the content type for this specific block.
- sendHeaders
- in file IOFilter.php, method IOFilter::sendHeaders()
Sends any HTTP headers specified, including the Content-Type header if $contentType is specified.
- ServerPush
- in file ServerPush.php, class ServerPush
ServerPush is a class that implements Netscape's HTTP server push functionality, allowing incremental data to be presented to the visitor.
- ServerPush
- in file ServerPush.php, method ServerPush::ServerPush()
Constructor method. $type can be either 'mixed', or 'replace'.
- set
- in file Cookie.php, method Cookie::set()
Sends a 'set-cookie' HTTP header to the browser. Must be called before any data has been sent.
top
t
- $tmp_name
- in file UploadedFile.php, variable UploadedFile::$tmp_name
The full path and name to the temporary upload file.
- $type
- in file UploadedFile.php, variable UploadedFile::$type
The mime type of the uploaded file.
- transform
- in file IOFilter.php, method IOFilter::transform()
Transforms the content provided into a new format. This method is left blank for subclasses to fill in.
- translateUri
- in file CGI.php, method CGI::translateUri()
Takes an ordinary URI with GET parameters in it, and returns
top
u
- UploadedFile.php
- procedural page UploadedFile.php
- UploadedFile
- in file UploadedFile.php, method UploadedFile::UploadedFile()
Constructor method.
- UploadedFile
- in file UploadedFile.php, class UploadedFile
This class add to the CGI class by providing a simplified means of dealing with uploaded files.
top
v
- verify
- in file CGI.php, method CGI::verify()
Verifies the specified value against either a regular
- verifyRequestMethod
- in file CGI.php, method CGI::verifyRequestMethod()
Verifies that the request method made by the user was made a certain way. This can be useful in cases where you don't want data passed in the URL (ie. use POST instead of GET).
top
|
|