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


C# PhpStack.PeekValueOptional方法代碼示例

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


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

示例1: setFetchMode

 public static object setFetchMode(object instance, PhpStack stack)
 {
     object fetch_to_mode = stack.PeekValue(1);
     object fetch_to_dest = stack.PeekValueOptional(2);
     object fetch_to_args = stack.PeekValueOptional(3);
     return ((PDOStatement)instance).setFetchMode(stack.Context, fetch_to_mode, fetch_to_dest, fetch_to_args);
 }
開發者ID:dw4dev,項目名稱:Phalanger,代碼行數:7,代碼來源:PDOStatement.PHP.cs

示例2: fetch

 public static object fetch(object instance, PhpStack stack)
 {
     object style = stack.PeekValueOptional(1);
     object orientation = stack.PeekValueOptional(2);
     object cursor_offset = stack.PeekValueOptional(3);
     stack.RemoveFrame();
     return ((PDOStatement)instance).fetch(stack.Context, style, orientation, cursor_offset);
 }
開發者ID:dw4dev,項目名稱:Phalanger,代碼行數:8,代碼來源:PDOStatement.cs

示例3: __construct

        public static object __construct(object instance, PhpStack stack)
        {
            object argFileName = stack.PeekValue(1);
            object argMode = stack.PeekValueOptional(2);
            PhpReference error = stack.PeekReferenceOptional(3);
            stack.RemoveFrame();

            string filename = PHP.Core.Convert.ObjectToString(argFileName);
            int mode = PHP.Core.Convert.ObjectToInteger(argMode);
            return ((SQLiteDatabase)instance).__construct(stack.Context, filename, mode, error);
        }
開發者ID:dw4dev,項目名稱:Phalanger,代碼行數:11,代碼來源:SQLiteDatabase.cs

示例4: hasChildren

 public static object hasChildren(object instance, PhpStack stack)
 {
     var allowLinks = stack.PeekValueOptional(1);
     stack.RemoveFrame();
     return ((RecursiveDirectoryIterator)instance).hasChildren(stack.Context/*, allowLinks*/);
 }
開發者ID:MpApQ,項目名稱:Phalanger,代碼行數:6,代碼來源:FileSystem.cs

示例5: __construct

 public static object __construct(object instance, PhpStack stack)
 {
     object argDSN = stack.PeekValue(1);
     object argUsername = stack.PeekValueOptional(2);
     object argPassword = stack.PeekValueOptional(3);
     object argDriverOptions = stack.PeekValueOptional(4);
     stack.RemoveFrame();
     return ((PDO)instance).__construct(stack.Context, argDSN, argUsername, argPassword, argDriverOptions);
 }
開發者ID:hansdude,項目名稱:Phalanger,代碼行數:9,代碼來源:PDO.cs

示例6: prepare

 public static object prepare(object instance, PhpStack stack)
 {
     object statement = stack.PeekValue(1);
     object driver_options = stack.PeekValueOptional(2);
     stack.RemoveFrame();
     return ((PDO)instance).prepare(stack.Context, statement, driver_options);
 }
開發者ID:hansdude,項目名稱:Phalanger,代碼行數:7,代碼來源:PDO.cs

示例7: quote

 public static object quote(object instance, PhpStack stack)
 {
     object str = stack.PeekValue(1);
     object paramType = stack.PeekValueOptional(2);
     stack.RemoveFrame();
     return ((PDO)instance).quote(stack.Context, str, paramType);
 }
開發者ID:hansdude,項目名稱:Phalanger,代碼行數:7,代碼來源:PDO.cs

示例8: __construct

 public static object __construct(object instance, PhpStack stack)
 {
     var arg1 = stack.PeekValueOptional(1);
     var arg2 = stack.PeekValueOptional(2);
     stack.RemoveFrame();
     return ((__PHP__DateTime)instance).__construct(stack.Context, arg1, arg2);
 }
開發者ID:proff,項目名稱:Phalanger,代碼行數:7,代碼來源:DateTime.cs

示例9: getSubIterator

 public static object getSubIterator(object instance, PhpStack stack)
 {
     var level = stack.PeekValueOptional(1);
     stack.RemoveFrame();
     return ((RecursiveIteratorIterator)instance).getSubIterator(stack.Context, level);
 }
開發者ID:dw4dev,項目名稱:Phalanger,代碼行數:6,代碼來源:Iterators.cs

示例10: fetchColumn

 public static object fetchColumn(object instance, PhpStack stack)
 {
     object column_number = stack.PeekValueOptional(1);
     stack.RemoveFrame();
     return ((PDOStatement)instance).fetchColumn(stack.Context, column_number);
 }
開發者ID:hansdude,項目名稱:Phalanger,代碼行數:6,代碼來源:PDOStatement.cs

示例11: execute

 public static object execute(object instance, PhpStack stack)
 {
     object input_parameters = stack.PeekValueOptional(1);
     stack.RemoveFrame();
     return ((PDOStatement)instance).execute(stack.Context, input_parameters);
 }
開發者ID:hansdude,項目名稱:Phalanger,代碼行數:6,代碼來源:PDOStatement.cs

示例12: bindValue

 public static object bindValue(object instance, PhpStack stack)
 {
     object parameter = stack.PeekValue(1);
     object value = stack.PeekReference(2);
     object data_type = stack.PeekValueOptional(3);
     stack.RemoveFrame();
     return ((PDOStatement)instance).bindValue(stack.Context, parameter, value, data_type);
 }
開發者ID:hansdude,項目名稱:Phalanger,代碼行數:8,代碼來源:PDOStatement.cs

示例13: getClosure

 public static object getClosure(object instance, PhpStack stack)
 {
     var @object = stack.PeekValueOptional(1);
     stack.RemoveFrame();
     return ((ReflectionMethod)instance).getClosure(stack.Context, @object);
 }
開發者ID:hansdude,項目名稱:Phalanger,代碼行數:6,代碼來源:ReflectionFunction.cs

示例14: __construct

		public static object __construct(object instance, PhpStack stack)
		{
			stack.CalleeName = "__construct";
			
			object arg1 = stack.PeekValue(1);
			
			object arg2 = stack.PeekValueOptional(2);
			stack.RemoveFrame();
			return ((SoapClient)instance).__construct(stack.Context, arg1, arg2);
		}
開發者ID:proff,項目名稱:Phalanger,代碼行數:10,代碼來源:SoapClient.dynamic.cs

示例15: attach

 public static object attach(object instance, PhpStack stack)
 {
     var storage = stack.PeekValue(1);
     var data = stack.PeekValueOptional(2);
     stack.RemoveFrame();
     return ((SplObjectStorage)instance).attach(stack.Context, storage, data);
 }
開發者ID:dw4dev,項目名稱:Phalanger,代碼行數:7,代碼來源:SplObjectStorage.cs


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