Pchp.Library.Output.ob_get_contents C# (CSharp) Method

ob_get_contents() public static method

Gets the content of the current buffer.
public static ob_get_contents ( Context ctx ) : PhpValue
ctx Pchp.Core.Context
return Pchp.Core.PhpValue
        public static PhpValue ob_get_contents(Context ctx)
        {
            return ctx.BufferedOutput.GetContent();
        }