helpers\BaseInflector ordinalize()

ordinalize() public static method Converts number to its ordinal English form. For example, converts 13 to 13th, 2 to 2nd . .. public static string ordinalize ( $number )$number integer The number to get its ordinal value

authclient\BaseClient $userAttributes

$userAttributes public property List of user attributes public array getUserAttributes ( )public void setUserAttributes ( $userAttributes )

db\Query scalar()

scalar() public method Returns the query result as a scalar value. The value returned will be the first column in the first row of the query results. public string|null|false scalar ( $db = null )$db yii\db\Connection The database connection used to generate the SQL statement. If this parameter is not given, the db application component will be used. return string|null|false The value of the first column in the first row of the query result. False is returned if the query result is e

mongodb\file\Collection createDownload()

createDownload() public method (available since version 2.1) Creates download command. public yii\mongodb\file\Download createDownload ( $document )$document array|\MongoDB\BSON\ObjectID File document ot be downloaded. return yii\mongodb\file\Download File download instance.

web\Session setId()

setId() public method Sets the session ID. This is a wrapper for PHP session_id(). public void setId ( $value )$value string The session ID for the current session

mongodb\Query batch()

batch() public method (available since version 2.1) Starts a batch query. A batch query supports fetching data in batches, which can keep the memory usage under a limit. This method will return a yii\mongodb\BatchQueryResult object which implements the Iterator interface and can be traversed to retrieve the data in batches. For example, $query = (new Query)->from('user'); foreach ($query->batch() as $rows) { // $rows is an array of 10 or fewer rows from user collection } public

sphinx\ActiveRecord attributes()

attributes() public method Returns the list of all attribute names of the model. The default implementation will return all column names of the table associated with this AR class. public array attributes ( )return array List of attribute names.

base\Component __clone()

__clone() public method This method is called after the object is created by cloning an existing one. It removes all behaviors because they are attached to the old object. public void __clone ( )

base\DynamicModel attributes()

attributes() public method Returns the list of attribute names. By default, this method returns all public non-static properties of the class. You may override this method to change the default behavior. public array attributes ( )return array List of attribute names.

base\Request setIsConsoleRequest()

setIsConsoleRequest() public method Sets the value indicating whether the current request is made via command line public void setIsConsoleRequest ( $value )$value boolean The value indicating whether the current request is made via command line