Home
last modified time | relevance | path

Searched refs:stack (Results 51 – 75 of 96) sorted by path

1234

/PHP-7.4/ext/spl/tests/
H A Dbug75673.phpt5 $stack = new SplStack();
6 $stack->push("one");
7 $stack->push("two");
9 $serialized = $stack->serialize();
10 var_dump($stack->count());
11 $stack->unserialize($serialized);
12 var_dump($stack->count());
13 $stack->unserialize($serialized);
14 var_dump($stack->count());
H A Ddllist_004.phpt5 $stack = new SplStack();
8 $stack->pop();
13 $stack->shift();
20 $stack->push($a);
21 echo $stack->pop()."\n";
24 $stack->push(1);
25 $stack->push(2);
26 echo $stack->top()."\n";
34 $stack->push(NULL);
35 $stack->push(NULL);
[all …]
/PHP-7.4/ext/standard/
H A Darray.c3196 *stack, /* Input array */ local
3203 Z_PARAM_ARRAY_EX(stack, 0, 1)
3227 zval *stack, /* Input stack */ local
3233 Z_PARAM_ARRAY_EX(stack, 0, 1)
3259 Z_ARRVAL_P(stack)->nNextFreeElement = Z_ARRVAL_P(stack)->nNextFreeElement - 1;
3277 zval *stack, /* Input stack */ local
3283 Z_PARAM_ARRAY_EX(stack, 0, 1)
3385 *stack; /* Input stack */ local
3393 Z_PARAM_ARRAY_EX(stack, 0, 1)
4038 Z_PARAM_ARRAY(stack)
[all …]
H A Dbasic_functions.c351 ZEND_ARG_INFO(1, stack) /* ARRAY_INFO(1, stack, 0) */
356 ZEND_ARG_INFO(1, stack) /* ARRAY_INFO(1, stack, 0) */
360 ZEND_ARG_INFO(1, stack) /* ARRAY_INFO(1, stack, 0) */
364 ZEND_ARG_INFO(1, stack) /* ARRAY_INFO(1, stack, 0) */
/PHP-7.4/ext/standard/tests/array/
H A Darray_push_basic.phpt5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...])
H A Darray_push_empty.phpt5 /* Prototype : int array_push(array $stack[, mixed $...])
H A Darray_push_error2.phpt5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...])
H A Darray_push_variation2.phpt5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...])
17 $stack = array (1, 2);
92 $temp_array = $stack;
H A Darray_push_variation3.phpt5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...])
13 * 2. as sub-array as $stack arg
24 echo "\n-- Pass sub-array as \$stack argument --\n";
51 -- Pass sub-array as $stack argument --
H A Darray_push_variation5.phpt5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...])
16 $stack = array ('one' => 'un', 'two' => 'deux');
20 var_dump($result = array_push($stack, $var0));
23 echo key($stack) . " => " . current ($stack) . "\n";
H A Darray_push_variation6.phpt5 /* Prototype : int array_push(array $stack, mixed $var [, mixed $...])
28 // arrays of different data types as keys to be passed to $stack argument
H A Darray_shift_basic.phpt5 /* Prototype : mixed array_shift(array &$stack)
H A Darray_shift_variation2.phpt5 /* Prototype : mixed array_shift(array &$stack)
37 // arrays of different data types to be passed to $stack argument
H A Darray_shift_variation3.phpt5 /* Prototype : mixed array_shift(array &$stack)
25 // unexpected values to be passed to $stack argument
H A Darray_shift_variation4.phpt5 /* Prototype : mixed array_shift(array &$stack)
H A Darray_shift_variation5.phpt5 /* Prototype : mixed array_shift(array &$stack)
12 * as the $stack argument of another call to array_shift()
18 $stack = array ( array ( array ('zero', 'one', 'two'), 'un', 'deux'), 'eins', 'zwei');
22 var_dump(array_shift(array_shift(array_shift($stack))));
24 $stack = array (array( array('zero', 'one', 'two'), 'un', 'deux'), 'eins', 'zwei');
27 $result1 = array_shift($stack);
H A Darray_shift_variation6.phpt5 /* Prototype : mixed array_shift(array &$stack)
H A Darray_shift_variation7.phpt5 /* Prototype : mixed array_shift(array &$stack)
16 $stack = array ('one' => 'un', 'two' => 'deux');
19 var_dump($result = array_shift($stack));
22 echo key($stack) . " => " . current ($stack) . "\n";
H A Darray_shift_variation8.phpt5 /* Prototype : mixed array_shift(array &$stack)
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug35229.phpt2 Bug #35229 (call_user_func() crashes when argument stack is nearly full)
/PHP-7.4/ext/standard/tests/http/
H A Dbug75981.phpt2 Bug #75981 (stack-buffer-overflow while parsing HTTP response)
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug69793.phpt2 Bug #69793: Remotely triggerable stack exhaustion via recursive method calls
/PHP-7.4/ext/xsl/tests/
H A Dbug71540.phpt61 Warning: XSLTProcessor::transformToXml(): xmlXPathCompiledEval: 2 objects left on the stack. in %sb…
/PHP-7.4/main/
H A Dalloca.c415 long size, pseg, this_segment, stack; in i00afunc() local
/PHP-7.4/
H A Dphp.ini-development288 ; structures. Setting the depth limit too high may result in stack overflows
364 ; Allows to include or exclude arguments from stack traces generated for exceptions.
366 ; of sensitive information in stack traces
1037 ; the available process stack and eventually crash PHP (due to reaching the
1038 ; stack size limit imposed by the Operating System).
1687 ; This directive specifies maximum stack depth for mbstring regular expressions. It is similar

Completed in 101 milliseconds

1234