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

ob_get_flush() public static method

Gets the content of the current buffer and decreases the level of buffering.
public static ob_get_flush ( Context ctx ) : PhpValue
ctx Pchp.Core.Context
return Pchp.Core.PhpValue
        public static PhpValue ob_get_flush(Context ctx)
        {
            BufferedOutput bo = ctx.BufferedOutput;

            var result = bo.GetContent();
            EndInternal(ctx, true);
            return result;
        }