Pchp.Library.Variables.gettype C# (CSharp) Method

gettype() public static method

Retrieves name of a variable type.
public static gettype ( PhpValue variable ) : string
variable Pchp.Core.PhpValue The variable.
return string
        public static string gettype(PhpValue variable)
        {
            // works well on references:
            return PhpVariable.GetTypeName(variable);
        }