Home
last modified time | relevance | path

Searched refs:instance (Results 1 – 25 of 745) sorted by relevance

12345678910>>...30

/PHP-5.5/Zend/tests/
H A Dbug68652.phpt7 private static $instance;
9 if (isset(self::$instance)) {
10 return self::$instance;
12 return self::$instance = new self();
22 private static $instance;
24 if (isset(self::$instance)) {
25 return self::$instance;
27 return self::$instance = new self();
39 Fatal error: Access to undeclared static property: Bar::$instance in %sbug68652.php on line %d
H A Dclosure_043.phpt6 * a bound instance. It should also not be automatically converted
7 * to a non-static instance when attempting to bind one */
24 echo "After binding, null scope, no instance", "\n";
28 echo "After binding, null scope, with instance", "\n";
32 echo "After binding, with scope, no instance", "\n";
36 echo "After binding, with scope, with instance", "\n";
50 After binding, null scope, no instance
57 After binding, null scope, with instance
59 Warning: Cannot bind an instance to a static closure in %s on line %d
68 After binding, with scope, no instance
[all …]
H A Dcall_user_func_003.phpt7 static $instance;
9 if (is_null($instance)) {
10 $instance = function () {
15 return $instance;
27 [%u|b%"instance"]=>
H A Dbug34045.phpt7 private static $instance;
10 self::$instance = $this;
14 if (!(self::$instance instanceof BasicSingleton)) {
16 self::$instance = new $c;
18 return self::$instance;
H A Dbug32322.phpt2 Bug #32322 (Return values by reference broken( using self::),example singleton instance)
9 private static $instance = null;
20 if ( self::$instance == null )
22 self::$instance = new test('Singleton1');
25 echo "Using old class " . self::$instance -> myname . "\n";
27 return self::$instance;
51 echo "Try static instance inside class :\n";
57 echo "Try static instance inside function :\n";
67 Try static instance inside class :
73 Try static instance inside function :
H A Dclosure_044.phpt5 /* A non-static closure has a bound instance if it has a scope
6 * and doesn't have an instance if it has no scope */
24 echo "After binding, null scope, no instance", "\n";
28 echo "After binding, null scope, with instance", "\n";
32 echo "After binding, with scope, no instance", "\n";
36 echo "After binding, with scope, with instance", "\n";
50 After binding, null scope, no instance
57 After binding, null scope, with instance
64 After binding, with scope, no instance
71 After binding, with scope, with instance
H A Dbug39721.phpt7 public $instance;
10 $this->instance = ++self::$instances;
25 echo $foo->instance . "\n";
26 echo $child->instance . "\n";
H A Dbug51176.phpt16 echo "instance\n";
30 instance
31 instance
32 instance
H A Dclosure_046.phpt8 * to having a bound instance. */
27 echo "After binding, no instance", "\n";
33 echo "After binding, with same-class instance for the bound one", "\n";
37 echo "After binding, with different instance for the bound one", "\n";
50 After binding, no instance
58 Warning: Cannot bind an instance to a static closure in %s on line %d
59 After binding, with same-class instance for the bound one
66 After binding, with different instance for the bound one
H A Dbug47165.phpt9 static $instance = null;
10 $instance = new Foo();
11 return $instance->bar;
H A Dclosure_041.phpt8 * to having a bound instance. */
47 echo "After binding, no instance", "\n";
55 echo "After binding, with same-class instance for the bound ones", "\n";
61 echo "After binding, with different instance for the bound ones", "\n";
77 After binding, no instance
87 Warning: Cannot bind an instance to a static closure in %s on line %d
88 After binding, with same-class instance for the bound ones
90 Warning: Cannot bind an instance to a static closure in %s on line %d
96 Warning: Cannot bind an instance to a static closure in %s on line %d
101 After binding, with different instance for the bound ones
/PHP-5.5/tests/classes/
H A Dtype_hinting_004.phpt31 echo "in C::f1 (instance);\n";
38 echo "in C::f2 (instance);\n";
56 echo "in C::f1 (instance);\n";
63 echo "in C::f2 (instance);\n";
101 ---> Type hints with callback instance method:
103 in C::f1 (instance);
104 in C::f1 (instance);
106 in C::f2 (instance);
107 in C::f2 (instance);
108 in C::f2 (instance);
[all …]
H A Dstatic_properties_003_error1.phpt2 Attempting to access static properties using instance property syntax
10 echo "\n--> Access non-visible static prop like instance prop:\n";
16 --> Access non-visible static prop like instance prop:
H A Dstatic_properties_003_error2.phpt2 Attempting to access static properties using instance property syntax
10 echo "\n--> Access non-visible static prop like instance prop:\n";
16 --> Access non-visible static prop like instance prop:
H A Dstatic_properties_003_error3.phpt2 Attempting to access static properties using instance property syntax
10 echo "\n--> Access non-visible static prop like instance prop:\n";
16 --> Access non-visible static prop like instance prop:
H A Dstatic_properties_003_error4.phpt2 Attempting to access static properties using instance property syntax
10 echo "\n--> Access non-visible static prop like instance prop:\n";
16 --> Access non-visible static prop like instance prop:
/PHP-5.5/tests/lang/
H A Dbug22510.phpt36 $this->instance = new foo();
37 $this->instance->method1($this);
38 $this->instance->method1($this);
43 $this->instance = new foo();
44 $this->instance->method2($this);
45 $this->instance->method2($this);
50 $this->instance = new foo();
81 $bar->instance->finalize();
84 $bar->instance->finalize();
87 $bar->instance->finalize();
[all …]
/PHP-5.5/ext/reflection/tests/
H A DReflectionObject_getConstants_basic.phpt20 echo "Reflecting on instance of class $class: \n";
27 Reflecting on instance of class C:
32 Reflecting on instance of class D:
37 Reflecting on instance of class E:
42 Reflecting on instance of class F:
47 Reflecting on instance of class X:
H A DReflectionObject_getConstant_basic.phpt20 echo "Reflecting on instance of class $class: \n";
27 Reflecting on instance of class C:
30 Reflecting on instance of class D:
33 Reflecting on instance of class E:
36 Reflecting on instance of class F:
39 Reflecting on instance of class X:
/PHP-5.5/ext/pdo/tests/
H A Dpdo_036.phpt8 $instance = new reflectionclass('pdostatement');
9 $x = $instance->newInstance();
12 $instance = new reflectionclass('pdorow');
13 $x = $instance->newInstance();
/PHP-5.5/ext/intl/tests/
H A Dtimezone_equals_basic.phpt15 echo "Comparison to equal instance:\n";
17 echo "Comparison to equivalent instance:\n";
27 Comparison to equal instance:
29 Comparison to equivalent instance:
H A Dcalendar_equals_error.phpt31 …96, Argument 1 passed to IntlCalendar::equals() must be an instance of IntlCalendar, instance of s…
35 error: 4096, Argument 1 passed to IntlCalendar::equals() must be an instance of IntlCalendar, integ…
39 error: 4096, Argument 2 passed to intlcal_equals() must be an instance of IntlCalendar, array given
43 error: 4096, Argument 1 passed to intlcal_equals() must be an instance of IntlCalendar, integer giv…
/PHP-5.5/ext/standard/tests/class_object/
H A Dget_declared_classes_variation1.phpt18 echo "\n-- before instance is declared --\n";
21 echo "\n-- after instance is declared --\n";
31 -- before instance is declared --
34 -- after instance is declared --
H A Dget_class_vars_variation2.phpt54 echo "\n-- From inside an object instance --\n";
55 $instance = new Tester();
56 $instance->test();
62 echo "\n-- From inside an parent object instance --\n";
70 echo "\n-- From inside a child object instance --\n";
89 -- From inside an object instance --
121 -- From inside an parent object instance --
145 -- From inside a child object instance --
/PHP-5.5/ext/pdo_odbc/
H A Dpdo_odbc.c98 char *instance = INI_STR("pdo_odbc.db2_instance_name"); in PHP_INI_END() local
99 if (instance) { in PHP_INI_END()
100 char *env = malloc(sizeof("DB2INSTANCE=") + strlen(instance)); in PHP_INI_END()
105 strcat(env, instance); in PHP_INI_END()

Completed in 29 milliseconds

12345678910>>...30