Home
last modified time | relevance | path

Searched refs:export (Results 1 – 25 of 79) sorted by relevance

1234

/PHP-7.1/ext/oci8/tests/
H A Dreflection1.phpt11 reflection::export(new reflectionfunction('oci_bind_by_name'));
14 reflection::export(new reflectionfunction('oci_field_name'));
15 reflection::export(new reflectionfunction('oci_field_size'));
20 reflection::export(new reflectionfunction('oci_execute'));
21 reflection::export(new reflectionfunction('oci_cancel'));
22 reflection::export(new reflectionfunction('oci_fetch'));
32 reflection::export(new reflectionfunction('oci_parse'));
34 reflection::export(new reflectionfunction('oci_result'));
38 reflection::export(new reflectionfunction('oci_close'));
42 reflection::export(new reflectionfunction('oci_error'));
[all …]
/PHP-7.1/ext/reflection/tests/
H A DReflectionProperty_export_error.phpt2 Test ReflectionProperty::export() errors.
13 ReflectionProperty::export("NonExistentClass", "prop", true);
21 ReflectionProperty::export($a, 'TestClass', false);
29 ReflectionProperty::export('TestClass', "nonExistentProperty", true);
36 ReflectionProperty::export();
37 ReflectionProperty::export('TestClass', "nonExistentProperty", true, false);
52 Warning: ReflectionProperty::export() expects at least 2 parameters, 0 given in %s on line %d
54 Warning: ReflectionProperty::export() expects at most 3 parameters, 4 given in %s on line %d
H A DReflectionProperty_basic1.phpt12 echo "export():\n";
13 var_dump(ReflectionProperty::export($class, $property, true));
14 echo "export():\n";
57 export():
60 export():
86 export():
89 export():
115 export():
118 export():
140 export():
[all …]
H A DReflectionClassConstant_basic1.phpt13 echo "export():\n";
14 var_dump(ReflectionClassConstant::export($base, $constant, true));
15 echo "export():\n";
58 export():
61 export():
92 export():
95 export():
126 export():
129 export():
160 export():
[all …]
H A DReflectionParameter_export_error.phpt2 ReflectionParameter::export() without parameters
12 ReflectionParameter::export();
17 Warning: ReflectionParameter::export() expects at least 2 parameters, 0 given in %s.php on line %d
19 Warning: ReflectionParameter::export() expects at least 2 parameters, 0 given in %s.php on line %d
H A DReflectionMethod_basic2.phpt2 ReflectionMethod class __toString() and export() methods
13 var_dump(ReflectionMethod::export($class, $method, true));
62 export():
78 export():
94 export():
110 export():
126 export():
142 export():
162 export():
182 export():
H A DReflectionExtension_export_basic.phpt2 ReflectionExtension::export()
9 ReflectionExtension::export("reflection", true);
14 ReflectionExtension::export("reflection", false);
H A Dbug41061.phpt2 Reflection Bug #41061 ("visibility error" in ReflectionFunction::export())
14 Reflection::export(new ReflectionFunction('foo'));
15 Reflection::export(new ReflectionMethod('bar', 'foo'));
H A DReflectionClass_export_basic2.phpt2 ReflectionClass::export() - ensure inherited private props are hidden.
12 ReflectionClass::export("c");
13 ReflectionClass::export("d");
H A DReflectionParameter_export_error3.phpt2 ReflectionParameter::export() with incorrect second parameter
13 ReflectionParameter::export('ReflectionParameterTest', 'incorrect_parameter');
19 #1 %s.php(%d): ReflectionParameter::export('ReflectionParam...', 'incorrect_param...')
H A DReflectionProperty_export_basic.phpt2 Test ReflectionProperty::export() usage.
10 var_dump(ReflectionProperty::export('TestClass', 'proper'));
H A DReflectionParameter_export_error2.phpt2 ReflectionParameter::export() with incorrect first parameter
14 ReflectionParameter::export($reflect, $key);
22 ReflectionParameter::export(42, $key);
H A DReflectionClass_export_array_bug72222.phpt2 ReflectionClass::export() - array constants
9 ReflectionClass::export("A");
H A DReflectionObject_export_basic1.phpt2 ReflectionObject::export() : very basic test with no dynamic properties
11 ReflectionObject::export($f);
H A Dtraits002.phpt13 reflectionclass::export('foo');
14 reflectionclass::export('bar');
H A DReflectionParameter_export_basic.phpt2 ReflectionParameter::export()
12 echo ReflectionParameter::export('ReflectionParameterTest', $key);
H A DReflectionObject_export_basic3.phpt2 ReflectionObject::export() - ensure dynamic property with same name as inherited private property i…
14 ReflectionObject::export($Obj)
H A DReflectionObject_export_basic2.phpt2 ReflectionObject::export() : very basic test with dynamic properties
12 ReflectionObject::export($f);
H A Dbug45571.phpt2 Bug #45571 (ReflectionClass::export() shows superclasses' private static methods.)
17 ReflectionClass::export("C");
/PHP-7.1/ext/snmp/tests/
H A Dreflection.phpt10 reflection::export(new reflectionmethod('snmp', '__construct'));
11 reflection::export(new reflectionmethod('snmp', 'close'));
12 reflection::export(new reflectionmethod('snmp', 'setSecurity'));
13 reflection::export(new reflectionmethod('snmp', 'get'));
14 reflection::export(new reflectionmethod('snmp', 'getnext'));
15 reflection::export(new reflectionmethod('snmp', 'walk'));
16 reflection::export(new reflectionmethod('snmp', 'set'));
17 reflection::export(new reflectionmethod('snmp', 'getErrno'));
18 reflection::export(new reflectionmethod('snmp', 'getError'));
/PHP-7.1/ext/standard/tests/general_functions/
H A Dvar_export_basic8.phpt11 echo "\n\n-- Var export on a simple object --\n";
20 echo "\n\n-- Var export on an simple array --\n";
24 echo "\n\n-- Var export on an nested array --\n";
32 -- Var export on a simple object --
45 -- Var export on an simple array --
53 -- Var export on an nested array --
/PHP-7.1/ext/simplexml/tests/
H A Dbug37565.phpt2 Bug #37565 (Using reflection::export with simplexml causing a crash)
19 Reflection::export(simplexml_load_string('<test/>', 'Setting'));
25 Reflection::export(simplexml_load_file('data:,<test/>', 'Setting'));
34 Error: Argument 1 passed to Reflection::export() must implement interface Reflector, null given
36 Error: Argument 1 passed to Reflection::export() must implement interface Reflector, null given
/PHP-7.1/ext/standard/tests/strings/
H A Dbug61116.phpt5 Reflection::export(new ReflectionFunction('htmlspecialchars'));
6 Reflection::export(new ReflectionFunction('get_html_translation_table'));
/PHP-7.1/Zend/tests/return_types/
H A Dreflection001.phpt2 Return type and Reflection::export()
17 ReflectionClass::export("A");
/PHP-7.1/sapi/cli/
H A Dconfig.m439 …print \$\$3 } }' | sort -u >> php.sym && \$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_…
41 …print \$\$3 } }' | sort -u >> php.sym && \$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_…
48 …BUILD_CLI="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(EXT…
51 …BUILD_CLI="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(EXT…

Completed in 55 milliseconds

1234