Pchp.Core.PhpString.Output C# (CSharp) Method

Output() private method

private Output ( Context ctx ) : void
ctx Context
return void
        internal void Output(Context ctx)
        {
            var chunks = _chunks;
            if (chunks != null)
            {
                if (chunks.GetType() == typeof(object[]))
                {
                    OutputChunks(ctx, (object[])chunks, _chunksCount);
                }
                else
                {
                    OutputChunk(ctx, chunks);
                }
            }
        }

Usage Example

Exemplo n.º 1
0
 public void Echo(PhpString value) => value.Output(this);
All Usage Examples Of Pchp.Core.PhpString::Output