Child classes:

StandardInflector

Class Details

  • abstract:

Class Methods

public string camelize ( string $s )

Turn a string into its camelized version.

  • string $s - string to convert
public static object instance ( )

Get an instance of the Inflector class.

public static bool is_lower ( string $s )

Determines if a string contains all lowercase characters.

  • string $s - string to check
public static bool is_upper ( string $s )

Determines if a string contains all uppercase characters.

  • string $s - string to check
public void keyify ( $class_name )
  • $class_name -
public string uncamelize ( string $s )

Convert a camelized string to a lowercase, underscored string.

  • string $s - string to convert
public string underscorify ( string $s )

Convert a string with space into a underscored equivalent.

  • string $s - string to convert
public void variablize ( $s )
  • $s -
  • abstract: