Home
last modified time | relevance | path

Searched refs:param (Results 51 – 75 of 291) sorted by relevance

12345678910>>...12

/PHP-7.0/ext/soap/tests/bugs/
H A Dbug38055.phpt9 function Test($param) {
11 $g1 = $param->boolA;
12 $g2 = $param->boolB;
H A Dbug38004.phpt9 function Test($param) {
11 $g = $param->strA."\n".$param->strB."\n";
/PHP-7.0/ext/spl/tests/
H A Dbug70303.phpt8 $param = $params[0];
9 var_dump($param->isOptional());
/PHP-7.0/ext/xmlrpc/tests/
H A Dbug50761.phpt10 <params><param><value><array><data>
21 </data></array></value></param></params>
37 <param>
62 </param>
H A D004.phpt14 <param>
18 </param>
H A D007.phpt17 <param>
21 </param>
H A D006.phpt17 <param>
21 </param>
H A Dbug18916.phpt18 <param>
22 </param>
H A Dbug71501.phpt17 <param>
21 </param>
H A Dbug72155.phpt21 <param>
25 </param>
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_print.c153 if (phpdbg_safe_class_lookup(param->str, param->len, &ce) == SUCCESS) { in PHPDBG_PRINT()
177 …phpdbg_error("print", "type=\"noclass\" class=\"%s\"", "The class %s could not be found", param->s… in PHPDBG_PRINT()
187 if (phpdbg_safe_class_lookup(param->method.class, strlen(param->method.class), &ce) == SUCCESS) { in PHPDBG_PRINT()
189 zend_string *lcname = zend_string_alloc(strlen(param->method.name), 0); in PHPDBG_PRINT()
190 zend_str_tolower_copy(ZSTR_VAL(lcname), param->method.name, ZSTR_LEN(lcname)); in PHPDBG_PRINT()
200 …\" method=\"%s::%s\"", "The method %s::%s could not be found", param->method.class, param->method.… in PHPDBG_PRINT()
205 …phpdbg_error("print", "type=\"noclass\" class=\"%s\"", "The class %s could not be found", param->m… in PHPDBG_PRINT()
215 const char *func_name = param->str; in PHPDBG_PRINT()
216 size_t func_name_len = param->len; in PHPDBG_PRINT()
H A Dphpdbg_break.c45 phpdbg_set_breakpoint_at(param); in PHPDBG_BREAK()
52 phpdbg_delete_breakpoint(param->num); in PHPDBG_BREAK()
/PHP-7.0/Zend/tests/
H A Dbug54624.phpt7 function foo(A $param) {
17 function foo(AliasA $param) {
/PHP-7.0/ext/spl/internal/
H A Dregexiterator.inc44 * @param it inner iterator
45 * @param regex the regular expression to match
46 * @param mode operation mode (one of self::MATCH, self::GET_MATCH,
48 * @param flags special flags (self::USE_KEY)
49 * @param preg_flags global PREG_* flags, see preg_match(),
127 /** @param mode new operaion mode
141 /** @param flags new operaion flags
155 /** @param preg_flags new PREG flags
H A Dlimititerator.inc33 * @param it Iterator to limit
34 * @param offset Offset to first element
35 * @param count Maximum number of elements to show or -1 for all
52 * @param position offset to seek to (relative to beginning not offset
125 * @param func Name of method to invoke
126 * @param params Array of parameters to pass to method
H A Drecursivetreeiterator.inc28 * @param it iterator to use as inner iterator
29 * @param rit_flags flags passed to RecursiveIteratoIterator (parent)
30 * @param cit_flags flags passed to RecursiveCachingIterator (for hasNext)
31 * @param mode mode passed to RecursiveIteratoIterator (parent)
56 * @param $part any PREFIX_* const.
57 * @param $value new prefix string for specified part.
/PHP-7.0/ext/snmp/tests/
H A Dsnmp-object-properties.phpt46 $param=123;
47 $session->$param = "param_value";
49 var_dump($session->$param);
50 var_dump(property_exists($session, $param));
53 $param = 'there is no such parameter';
54 var_dump($session->$param);
55 var_dump(property_exists($session, $param));
/PHP-7.0/ext/spl/examples/
H A Dcallbackfilteriterator.inc37 * @param it inner iterator (iterator to filter)
38 * @param callback callback function
39 * @param mode any of USE_VALUE, USE_KEY, USE_BOTH
40 * @param flags any of 0, REPLACE
103 /** @param $mode set new mode, @see mode */
115 /** @param $flags set new flags, @see flags */
/PHP-7.0/ext/standard/tests/array/
H A Darray_column_variant.phpt14 echo "-- pass null as second parameter and bogus third param to get back zero-indexed array of all …
17 echo "-- pass null as second parameter and no third param to get back array_values(input) --\n";
43 -- pass null as second parameter and bogus third param to get back zero-indexed array of all column…
64 -- pass null as second parameter and no third param to get back array_values(input) --
/PHP-7.0/ext/mysqli/tests/
H A Dbug52891.phpt36 $param = 42;
38 if (!$stmt1->bind_param("i", $param))
41 if (!$stmt2->bind_param("i", $param))
52 $param = -4294967297;
57 $param = 43;
66 $param = -4294967295;
70 $param = 4294967295;
77 $param = 4294967297;
/PHP-7.0/ext/reflection/tests/
H A Dbug39884.phpt7 function paramTest(self $param)
15 $refParam = new ReflectionParameter(array('stubParamTest', 'paramTest'), 'param');
H A DReflectionParameter_DefaultValueConstant_error.phpt12 foreach($reflect->getParameters() as $param) {
14 echo $param->getDefaultValueConstantName() . "\n";
/PHP-7.0/ext/pcre/tests/
H A Dbug21732.phpt8 function cb($param) {
9 var_dump($param);
/PHP-7.0/ext/openssl/tests/
H A Dopenssl_private_encrypt_basic.phpt30 Warning: openssl_private_encrypt(): key param is not a valid private key in %s on line %d
33 Warning: openssl_private_encrypt(): key param is not a valid private key in %s on line %d
36 Warning: openssl_private_encrypt(): key param is not a valid private key in %s on line %d
/PHP-7.0/ext/bz2/tests/
H A Dbug72447.phpt8 $param = array('blocks' => $input);
11 stream_filter_append($fp, 'bzip2.compress', STREAM_FILTER_WRITE, $param);

Completed in 53 milliseconds

12345678910>>...12