Caution: This documentation is for eZ Publish legacy, from version 3.x to 6.x.
For 5.x documentation covering Platform see eZ Documentation Center, for difference between legacy and Platform see 5.x Architecture overview.

max

Summary

Returns the largest value of all parameters.

Usage

max( value1, value2 [,...] )

Parameters

NameTypeDescriptionRequired
value1 any A value that should be evaluated. Yes.
value2 any Another value that should be evaluated. Yes.

Returns

The largest value of all parameters.

Description

This operator returns the largest value of all parameters. The input parameter is ignored.

Examples

Example 1

{max( 2, 3, 1 )}

The following output will be produced: "3".

Example 2

{max( array( 1, 2 ), array( 1, 2, 3 ) )}

The following array will be returned: ( 1, 2, 3 ).

Balazs Halasy (05/02/2004 10:47 am)

Balazs Halasy (04/05/2005 2:17 pm)


Comments

There are no comments.