當前位置: 首頁>>代碼示例>>C#>>正文


C# Context.Echo方法代碼示例

本文整理匯總了C#中Pchp.Core.Context.Echo方法的典型用法代碼示例。如果您正苦於以下問題:C# Context.Echo方法的具體用法?C# Context.Echo怎麽用?C# Context.Echo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Pchp.Core.Context的用法示例。


在下文中一共展示了Context.Echo方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ProcessStatus

        int ProcessStatus(Context ctx, ref PhpValue status)
        {
            switch (status.TypeCode)
            {
                case PhpTypeCode.Alias:
                    return ProcessStatus(ctx, ref status.Alias.Value);

                case PhpTypeCode.Long:
                case PhpTypeCode.Int32:
                    return (int)status.ToLong();

                default:
                    if (ctx != null)
                    {
                        ctx.Echo(status);
                    }
                    return 0;
            }
        }
開發者ID:iolevel,項目名稱:peachpie,代碼行數:19,代碼來源:Exceptions.cs

示例2: var_export

        /// <summary>
        /// Outputs or returns a pars-able string representation of a variable.
        /// </summary>
        /// <param name="ctx">Current runtime context.</param>
        /// <param name="variable">The variable.</param>
        /// <param name="returnString">Whether to return a string representation.</param>
        /// <returns>A string representation or a <c>null</c> reference if <paramref name="returnString"/> is <c>false</c>.</returns>
        public static string var_export(Context ctx, PhpValue variable, bool returnString = false)
        {
            var output = (new ExportFormatter(ctx, "\n")).Serialize(variable);

            if (returnString)
            {
                // output to a string:
                return output.ToString(ctx);
            }
            else
            {
                // output to script context:
                ctx.Echo(output);
                return null;
            }

        }
開發者ID:iolevel,項目名稱:peachpie,代碼行數:24,代碼來源:Variables.cs

示例3: var_dump

 /// <summary>
 /// Dumps variables.
 /// </summary>
 /// <param name="ctx">Current runtime context.</param>
 /// <param name="variables">Variables to be dumped.</param>
 public static void var_dump(Context ctx, params PhpValue[] variables)
 {
     var formatter = new DumpFormatter(ctx, "\n"); // TODO: HtmlDumpFormatter
     for (int i = 0; i < variables.Length; i++)
     {
         ctx.Echo(formatter.Serialize(variables[i]));
     }
 }
開發者ID:iolevel,項目名稱:peachpie,代碼行數:13,代碼來源:Variables.cs

示例4: print_r

        //class HtmlDumpFormatter : DumpFormatter
        //{

        //}

        #endregion

        /// <summary>
        /// Outputs or returns human-readable information about a variable. 
        /// </summary>
        /// <param name="ctx">Current runtime context.</param>
        /// <param name="value">The variable.</param>
        /// <param name="returnString">Whether to return a string representation.</param>
        /// <returns>A string representation or <c>true</c> if <paramref name="returnString"/> is <c>false</c>.</returns>
        public static PhpValue print_r(Context ctx, PhpValue value, bool returnString = false)
        {
            var output = (new PrintFormatter(ctx, "\n")).Serialize(value);

            if (returnString)
            {
                // output to a string:
                return PhpValue.Create(output);
            }
            else
            {
                // output to script context:
                ctx.Echo(output);
                return PhpValue.True;
            }
        }
開發者ID:iolevel,項目名稱:peachpie,代碼行數:30,代碼來源:Variables.cs


注:本文中的Pchp.Core.Context.Echo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。