Esempio n. 1
0
 //static public void define(string Name, int Value)
 public static void define(Php54Scope Scope, string Name, Php54Var Value)
 {
     var LeftValue = Scope.Runtime.ConstantScope.GetVariable(Name);
     Php54Var.Assign(LeftValue, Value);
 }
Esempio n. 2
0
 public static void register_shutdown_function(Php54Scope Scope, Php54Var ShutdownFunction)
 {
     Scope.Runtime.ShutdownFunction = ShutdownFunction;
 }