Interface ReaderInterface

Summary

Fully Qualified Name: Zend\Config\Reader\ReaderInterface

Description

Methods

Name Description Defined By
fromFile() Read from a file and create an array ReaderInterface
fromString() Read from a string and create an array ReaderInterface

Method Details

fromFile()

Read from a file and create an array

Parameter Name Type Description
$filename string

Returns: array

fromString()

Read from a string and create an array

Parameter Name Type Description
$string string

Returns: array|bool

Top