本文整理汇总了C#中PHP.Core.PhpStack类的典型用法代码示例。如果您正苦于以下问题:C# PhpStack类的具体用法?C# PhpStack怎么用?C# PhpStack使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
PhpStack类属于PHP.Core命名空间,在下文中一共展示了PhpStack类的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);
}
示例2: __construct
public static object __construct(object instance, PhpStack stack)
{
stack.CalleeName = "__construct";
object arg1 = stack.PeekValue(1);
stack.RemoveFrame();
return ((DOMXPath)instance).__construct(stack.Context, arg1);
}
示例3: item
public static object item(object instance, PhpStack stack)
{
stack.CalleeName = "item";
object arg1 = stack.PeekValue(1);
stack.RemoveFrame();
return ((DOMNodeList)instance).item(stack.Context, arg1);
}
示例4: 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);
}
示例5: __invoke
public static object __invoke(object/*!*/instance, PhpStack/*!*/stack)
{
var closure = (Closure)instance;
stack.ExpandFrame([email protected]);
return closure.lambda(instance, stack);
}
示例6: __construct
public static object __construct(object instance, PhpStack stack)
{
object argDSN = stack.PeekValue(1);
object argUsername = stack.PeekReferenceOptional(2);
object argPassword = stack.PeekReferenceOptional(3);
object argDriverOptions = stack.PeekReferenceOptional(4);
stack.RemoveFrame();
return ((PDO)instance).__construct(stack.Context, argDSN, argUsername, argPassword, argDriverOptions);
}
示例7: registerNamespace
public static object registerNamespace(object instance, PhpStack stack)
{
stack.CalleeName = "registerNamespace";
object arg1 = stack.PeekValue(1);
object arg2 = stack.PeekValue(2);
stack.RemoveFrame();
return ((DOMXPath)instance).registerNamespace(stack.Context, arg1, arg2);
}
示例8: __call
public static object __call(object instance, PhpStack stack)
{
stack.CalleeName = "__call";
object arg1 = stack.PeekValue(1);
object arg2 = stack.PeekValue(2);
stack.RemoveFrame();
return ((SoapClient)instance).__call(stack.Context, arg1, arg2);
}
示例9: Foo
public static object Foo(object instance, PhpStack stack)
{
// setup the stack, get arguments from the stack
stack.CalleeName = "Foo";
object arg1 = stack.PeekValue(1);
stack.RemoveFrame();
// call the actual Foo with arguments obtained from the stack
return ((MyPhpClass)instance).Foo(stack.Context, arg1);
}
示例10: __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);
}
示例11: __construct
public static new object __construct(object instance, PhpStack stack)
{
var path = stack.PeekValue(1);
stack.RemoveFrame();
return ((DirectoryIterator)instance).__construct(stack.Context, path);
}
示例12: isFile
public static object isFile(object instance, PhpStack stack)
{
stack.RemoveFrame();
return ((SplFileInfo)instance).isFile(stack.Context);
}
示例13: getModifierNames
public static object getModifierNames(object instance, PhpStack stack)
{
stack.CalleeName = "getModifierNames";
object arg1 = stack.PeekValue(1);
stack.RemoveFrame();
int typed1 = Core.Convert.ObjectToInteger(arg1);
return getModifierNames(typed1);
}
示例14: hasChildren
public static object hasChildren(object instance, PhpStack stack)
{
var allowLinks = stack.PeekValueOptional(1);
stack.RemoveFrame();
return ((RecursiveDirectoryIterator)instance).hasChildren(stack.Context/*, allowLinks*/);
}
示例15: current
public new static object current(object instance, PhpStack stack)
{
stack.RemoveFrame();
return ((FilesystemIterator)instance).current(stack.Context);
}