Flow\Helper::lower PHP Method

lower() public static method

public static lower ( $obj = null )
    public static function lower($obj = null)
    {
        return strtolower(strval($obj));
    }

Usage Example

Beispiel #1
0
 public function test_lower()
 {
     $this->assertEquals('foobar', Helper::lower('FooBar'));
     $this->assertEquals('123', Helper::lower(123));
 }