Class Encrypt

Summary

Fully Qualified Name: Zend\Filter\File\Encrypt
Extends: Encrypt

Description

Encrypts a given file and stores the encrypted file content

Methods

Name Description Defined By
filter() Defined by Zend\Filter\Filter Encrypt
getFilename() Returns the new filename where the content will be stored Encrypt
setFilename() Sets the new filename where the content will be stored Encrypt

Method Details

filter()

Defined by Zend\Filter\Filter

Encrypts the file $value with the defined settings

Parameter Name Type Description
$value string|array Full

Returns: string|array The filename which has been set, or false when there were errors

getFilename()

Returns the new filename where the content will be stored

Returns: string

setFilename()

Sets the new filename where the content will be stored

Parameter Name Type Description
$filename string (Optional)

Returns: self

Top