Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

strval(3) [php man page]

STRVAL(3)								 1								 STRVAL(3)

strval - Get string value of a variable

SYNOPSIS
string strval (mixed $var) DESCRIPTION
Get the string value of a variable. See the documentation on string for more information on converting to string. This function performs no formatting on the returned value. If you are looking for a way to format a numeric value as a string, please see sprintf(3) or number_format(3). PARAMETERS
o $var - The variable that is being converted to a string. $var may be any scalar type or an object that implements the __toString() method. You cannot use strval(3) on arrays or on objects that do not implement the __toString() method. RETURN VALUES
The string value of $var. EXAMPLES
Example #1 strval(3) example using PHP 5's magic __toString() method. <?php class StrValTest { public function __toString() { return __CLASS__; } } // Prints 'StrValTest' echo strval(new StrValTest); ?> SEE ALSO
boolval(3), floatval(3), intval(3), settype(3), sprintf(3), number_format(3), Type juggling, __toString(). PHP Documentation Group STRVAL(3)

Check Out this Related Man Page

REFLECTIONFUNCTION(3)							 1						     REFLECTIONFUNCTION(3)

The ReflectionFunction class

INTRODUCTION
The ReflectionFunction class reports information about a function. CLASS SYNOPSIS
ReflectionFunction ReflectionFunctionextends ReflectionFunctionAbstractReflector Constants o const integer$ReflectionFunction::IS_DEPRECATED262144 Properties o public$name Methods o public ReflectionFunction::__construct (mixed $name) o publicstatic string ReflectionFunction::export (string $name, [string $return]) o public Closure ReflectionFunction::getClosure (void ) o public mixed ReflectionFunction::invoke ([mixed $parameter], [mixed $...]) o public mixed ReflectionFunction::invokeArgs (array $args) o public bool ReflectionFunction::isDisabled (void ) o public string ReflectionFunction::__toString (void ) Inherited methods o finalprivate void ReflectionFunctionAbstract::__clone (void ) o public ReflectionClass ReflectionFunctionAbstract::getClosureScopeClass (void ) o public object ReflectionFunctionAbstract::getClosureThis (void ) o public string ReflectionFunctionAbstract::getDocComment (void ) o public int ReflectionFunctionAbstract::getEndLine (void ) o public ReflectionExtension ReflectionFunctionAbstract::getExtension (void ) o public string ReflectionFunctionAbstract::getExtensionName (void ) o public string ReflectionFunctionAbstract::getFileName (void ) o public string ReflectionFunctionAbstract::getName (void ) o public string ReflectionFunctionAbstract::getNamespaceName (void ) o public int ReflectionFunctionAbstract::getNumberOfParameters (void ) o public int ReflectionFunctionAbstract::getNumberOfRequiredParameters (void ) o public array ReflectionFunctionAbstract::getParameters (void ) o public string ReflectionFunctionAbstract::getShortName (void ) o public int ReflectionFunctionAbstract::getStartLine (void ) o public array ReflectionFunctionAbstract::getStaticVariables (void ) o public bool ReflectionFunctionAbstract::inNamespace (void ) o public bool ReflectionFunctionAbstract::isClosure (void ) o public bool ReflectionFunctionAbstract::isDeprecated (void ) o public bool ReflectionFunctionAbstract::isGenerator (void ) o public bool ReflectionFunctionAbstract::isInternal (void ) o public bool ReflectionFunctionAbstract::isUserDefined (void ) o public bool ReflectionFunctionAbstract::isVariadic (void ) o public bool ReflectionFunctionAbstract::returnsReference (void ) o abstractpublic void ReflectionFunctionAbstract::__toString (void ) PROPERTIES
o $name - Name of the function. Read-only, throws ReflectionException in attempt to write. PREDEFINED CONSTANTS
REFLECTIONFUNCTION MODIFIERS
o ReflectionFunction::IS_DEPRECATED - Indicates deprecated functions. PHP Documentation Group REFLECTIONFUNCTION(3)
Man Page