i18n\Formatter $numberFormatterOptions

$numberFormatterOptions public property A list of name value pairs that are passed to the intl Numberformatter::setAttribute() method of all the number formatter objects created by createNumberFormatter(). This property takes only effect if the PHP intl extension is installed. Please refer to the PHP manual for the possible options. For example to adjust the maximum and minimum value of fraction digits you can configure this property like the following: [ NumberFormatter::MIN_FRACTION_D

gii\Generator stickyAttributes()

stickyAttributes() public method Returns the list of sticky attributes. A sticky attribute will remember its value and will initialize the attribute with this value when the generator is restarted. public array stickyAttributes ( )return array List of sticky attributes

helpers\BaseHtml fileInput()

fileInput() public static method Generates a file input field. To use a file input field, you should set the enclosing form's "enctype" attribute to be "multipart/form-data". After the form is submitted, the uploaded file information can be obtained via $_FILES[$name] (see PHP documentation). public static string fileInput ( $name, $value = null, $options = [] )$name string The name attribute. $value string The value attribute. If it is null, the value attribute will not be generated.

swiftmailer\Message getReturnPath()

getReturnPath() public method (available since version 2.0.6) Returns the return-path (the bounce address) of this message. public string getReturnPath ( )return string The bounce email address.

helpers\VarDumper

All Classes | Methods Inheritance yii\helpers\VarDumper » yii\helpers\BaseVarDumper Available since version 2.0 Source Code https://github.com/yiisoft/yii2/blob/master/framework/helpers/VarDumper.php VarDumper is intended to replace the buggy PHP function var_dump and print_r. It can correctly identify the recursively referenced objects in a complex object structure. It also has a recursive depth control to avoid indefinite recursive display of some peculiar variables. VarDumper can be u

rest\Serializer addPaginationHeaders()

addPaginationHeaders() protected method Adds HTTP headers about the pagination to the response. protected void addPaginationHeaders ( $pagination )$pagination yii\data\Pagination

authclient\OAuth1 $accessTokenUrl

$accessTokenUrl public property OAuth access token URL. public string $accessTokenUrl = null

web\UrlRule hasNormalizer()

hasNormalizer() protected method (available since version 2.0.10) protected boolean hasNormalizer ( $manager )$manager yii\web\UrlManager The URL manager

redis\Cache getValues()

getValues() protected method Retrieves multiple values from cache with the specified keys. The default implementation calls getValue() multiple times to retrieve the cached values one by one. If the underlying cache storage supports multiget, this method should be overridden to exploit that feature. protected array getValues ( $keys )$keys array A list of keys identifying the cached values return array A list of cached values indexed by the keys

db\ActiveQuery one()

one() public method Executes query and returns a single row of result. public yii\db\ActiveRecord|array|null one ( $db = null )$db yii\db\Connection The DB connection used to create the DB command. If null, the DB connection returned by $modelClass will be used. return yii\db\ActiveRecord|array|null A single row of query result. Depending on the setting of asArray(), the query result may be either an array or an ActiveRecord object. Null will be returned if the query results in nothi