Home
last modified time | relevance | path

Searched refs:function (Results 701 – 725 of 7077) sorted by relevance

1...<<21222324252627282930>>...284

/PHP-5.6/ext/standard/tests/image/
H A Dgetimagesize_error1.phpt2 Test getimagesize() function : error conditions - wrong number of args
14 echo "\n-- Testing getimagesize() function with Zero arguments --\n";
18 echo "\n-- Testing getimagesize() function with more than expected no. of arguments --\n";
29 -- Testing getimagesize() function with Zero arguments --
34 -- Testing getimagesize() function with more than expected no. of arguments --
/PHP-5.6/ext/spl/tests/
H A Diterator_039.phpt11 public function __construct($a)
17 public function valid()
23 public function rewind()
29 public function key()
35 public function current()
41 public function next()
/PHP-5.6/ext/standard/tests/array/
H A Darray_udiff_assoc_error.phpt2 Test array_udiff_assoc() function : error conditions
6 … but do additional checks whether the keys are equal. Keys are compared by user supplied function.
21 echo "\n-- Testing array_udiff_assoc() function with more than expected no. of arguments --\n";
25 echo "\n-- Testing array_udiff_assoc() function with less than expected no. of arguments --\n";
33 -- Testing array_udiff_assoc() function with more than expected no. of arguments --
38 -- Testing array_udiff_assoc() function with less than expected no. of arguments --
H A Darray_udiff_error.phpt2 Test array_udiff() function : error conditions
6 …h are not present in any of the others arguments. Elements are compared by user supplied function.
21 echo "\n-- Testing array_udiff() function with more than expected no. of arguments --\n";
25 echo "\n-- Testing array_udiff() function with less than expected no. of arguments --\n";
33 -- Testing array_udiff() function with more than expected no. of arguments --
38 -- Testing array_udiff() function with less than expected no. of arguments --
H A Darray_map_variation9.phpt2 Test array_map() function : usage variations - binary safe checking
16 function callback1($a)
20 function callback2($a, $b)
28 echo "-- checking binary safe array with one parameter callback function --\n";
31 echo "-- checking binary safe array with two parameter callback function --\n";
38 -- checking binary safe array with one parameter callback function --
49 -- checking binary safe array with two parameter callback function --
H A Dusort_object1.phpt2 Test usort() function : object functionality - different number of properties
6 * Description: Sort an array by values using a user-defined comparison function
17 function simple_cmp($value1, $value2)
29 // comparison function for SimpleClass2 objects which has more than one member
30 function multiple_cmp($value1, $value2)
45 public function __construct($value) {
56 public function __construct($int, $float, $str) {
61 public function getValue() {
H A Dbug34982.phpt2 Bug #34982 (array_walk_recursive() modifies elements outside function scope)
13 function func($a) {
18 function apply(&$input, $key) {
/PHP-5.6/ext/session/tests/
H A Dbug32330.phpt16 function sOpen($path, $name)
22 function sClose()
28 function sRead($id)
34 function sWrite($id, $data)
40 function sDestroy($id)
46 function sGC($maxlifetime)
H A Dsession_set_save_handler_class_007.phpt23 public function __construct($num) {
27 public function __destruct() {
30 public function finish() {
35 public function write($id, $data) {
39 public function close() {
60 // implicit close (called by shutdown function)
H A D004.phpt17 function open($save_path, $session_name)
22 function close()
26 function read($key)
32 function write($key, $val)
39 function destroy($key)
45 function gc() { return true; }
52 function method() { $this->yes++; }
H A D024.phpt18 function open($save_path, $session_name)
23 function close()
27 function read($key)
33 function write($key, $val)
40 function destroy($key)
46 function gc() { return true; }
53 function method() { $this->yes++; }
/PHP-5.6/ext/spl/examples/
H A Ddbaarray.inc28 function __construct($file, $handler)
39 function __destruct()
50 function offsetGet($name)
69 function offsetSet($name, $value)
79 function offsetExists($name)
89 function offsetUnset($name)
/PHP-5.6/ext/standard/tests/file/
H A Dbug38450.phpt10 function VariableStream($var) {
14 function stream_open($path, $mode, $options, &$opened_path)
23 function stream_read($count)
30 function stream_write($data)
39 function stream_tell()
44 function stream_eof()
48 function stream_seek($offset, $whence)
H A Dbug38450_1.phpt10 function __construct($var) {
14 function stream_open($path, $mode, $options, &$opened_path)
23 function stream_read($count)
30 function stream_write($data)
39 function stream_tell()
44 function stream_eof()
48 function stream_seek($offset, $whence)
H A Dbug38450_3.phpt10 function __construct(array $var) {
14 function stream_open($path, $mode, $options, &$opened_path)
23 function stream_read($count)
30 function stream_write($data)
39 function stream_tell()
44 function stream_eof()
48 function stream_seek($offset, $whence)
/PHP-5.6/ext/xml/tests/
H A Dxml001.phpt2 XML parser test, function callbacks
34 function startElement($parser, $name, $attribs)
45 function endElement($parser, $name)
50 function characterData($parser, $data)
55 function PIHandler($parser, $target, $data)
60 function defaultHandler($parser, $data)
69 function externalEntityRefHandler($parser, $openEntityNames, $base, $systemId, $publicId)
/PHP-5.6/ext/reflection/tests/
H A DReflectionClass_getMethods_003.phpt9 public function pubf1() {}
10 public function pubf2() {}
11 private function privf1() {}
12 private function privf2() {}
13 static public function pubsf1() {}
14 static public function pubsf2() {}
15 static private function privsf1() {}
16 static private function privsf2() {}
/PHP-5.6/tests/classes/
H A Darray_access_011.phpt14 function __construct(ArrayAccess $object, array &$array, $element)
22 function offsetExists($index) {
27 function offsetGet($index) {
32 function offsetSet($index, $value) {
37 function offsetUnset($index) {
47 function __construct()
52 function offsetExists($index)
57 function offsetGet($index)
69 function offsetSet($index, $value)
74 function offsetUnset($index)
/PHP-5.6/ext/posix/tests/
H A Dposix_getpgid_basic.phpt2 Test posix_getpgid() function : basic functionality
9 echo "Basic test of posix_getpgid function\n";
19 Basic test of posix_getpgid function
H A Dposix_getpgrp_basic.phpt2 Test posix_getpgrp() function : basic functionality
9 echo "Basic test of POSIX getpgrp function\n";
18 Basic test of POSIX getpgrp function
H A Dposix_getpid_basic.phpt2 Test posix_getpid() function : basic functionality
9 echo "Basic test of POSIX getpid function\n";
18 Basic test of POSIX getpid function
H A Dposix_getppid_basic.phpt2 Test posix_getppid() function : basic functionality
9 echo "Basic test of POSIX getppid function\n";
18 Basic test of POSIX getppid function
H A Dposix_getsid_basic.phpt2 Test posix_getsid() function : basic functionality
9 echo "Basic test of posix_getsid function\n";
19 Basic test of posix_getsid function
/PHP-5.6/Zend/tests/
H A Dbug30161.phpt7 public function __construct() {
15 public function __construct() {
22 public function __toString() {
H A Dbug33277.phpt6 private function bar() {
12 function barson() {
19 function bar() {

Completed in 27 milliseconds

1...<<21222324252627282930>>...284