Class Ini

Summary

Fully Qualified Name: Zend\Config\Writer\Ini
Extends: AbstractWriter

Description

Methods

Name Description Defined By
getNestSeparator() Get nest separator. Ini
processConfig() processConfig(): defined by AbstractWriter. Ini
setNestSeparator() Set nest separator. Ini
setRenderWithoutSectionsFlags() Set if rendering should occur without sections or not. Ini
shouldRenderWithoutSections() Return whether the writer should render without sections. Ini
toFile() toFile(): defined by Writer interface. AbstractWriter
toString() toString(): defined by Writer interface. AbstractWriter

Method Details

getNestSeparator()

Get nest separator.

Returns: string

processConfig()

processConfig(): defined by AbstractWriter.

Parameter Name Type Description
$config array

Returns: string

setNestSeparator()

Set nest separator.

Parameter Name Type Description
$separator string

Returns: self

setRenderWithoutSectionsFlags()

Set if rendering should occur without sections or not.

If set to true, the INI file is rendered without sections completely into the global namespace of the INI file.

Parameter Name Type Description
$withoutSections bool

Returns: self

shouldRenderWithoutSections()

Return whether the writer should render without sections.

Returns: bool

toFile()

toFile(): defined by Writer interface.

Parameter Name Type Description
$filename string
$config mixed
$exclusiveLock bool

Returns: void

toString()

toString(): defined by Writer interface.

Parameter Name Type Description
$config mixed

Returns: string

Top