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

strval() public static method

Converts to string.
public static strval ( Context ctx, PhpValue variable ) : string
ctx Pchp.Core.Context Current runtime context.
variable Pchp.Core.PhpValue The variable.
return string
        public static string strval(Context ctx, PhpValue variable) => variable.ToString(ctx);