Home
last modified time | relevance | path

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

123456789

/PHP-8.1/ext/openssl/tests/
H A Dbug38255.phpt26 Warning: openssl_verify(): Supplied key param cannot be coerced into a public key in %s on line %d
28 Warning: openssl_verify(): Supplied key param cannot be coerced into a public key in %s on line %d
31 Warning: openssl_verify(): Supplied key param cannot be coerced into a public key in %s on line %d
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-8.1/ext/soap/tests/bugs/
H A Dbug38004.phpt9 function Test($param) {
11 $g = $param->strA."\n".$param->strB."\n";
/PHP-8.1/ext/posix/tests/
H A Dposix_getsid_error.phpt4 cases: no params, wrong param, wrong param range
/PHP-8.1/ext/reflection/tests/
H A Ddefault_value_leak.phpt7 public function method($param = [123]) {}
10 $rp = new ReflectionParameter(['Test', 'method'], 'param');
H A DReflectionParameter_DefaultValueConstant_error.phpt12 foreach($reflect->getParameters() as $param) {
14 echo $param->getDefaultValueConstantName() . "\n";
H A DReflectionFunction_getClosureScopeClass.phpt5 $closure = function($param) { return "this is a closure"; };
11 return function($param) { return "this is a closure"; };
H A Dbug39884.phpt7 function paramTest(self $param)
15 $refParam = new ReflectionParameter(array('stubParamTest', 'paramTest'), 'param');
/PHP-8.1/sapi/phpdbg/
H A Dphpdbg_break.c42 phpdbg_set_breakpoint_at(param); in PHPDBG_BREAK()
49 phpdbg_delete_breakpoint(param->num); in PHPDBG_BREAK()
H A Dphpdbg_help.c229 if (!param || param->type == EMPTY_PARAM) { in PHPDBG_COMMAND()
234 if (param && param->type == STR_PARAM) { in PHPDBG_COMMAND()
235 n = get_command(param->str, param->len, &cmd, phpdbg_prompt_commands); in PHPDBG_COMMAND()
243 if (param->len > 1) { in PHPDBG_COMMAND()
245 if (!strncmp(cmd->name, param->str, param->len)) { in PHPDBG_COMMAND()
252 phpdbg_error("Internal help error, non-unique alias \"%c\"", param->str[0]); in PHPDBG_COMMAND()
257 n = get_command( param->str, param->len, &cmd, phpdbg_help_commands); in PHPDBG_COMMAND()
261 return cmd->handler(param); in PHPDBG_COMMAND()
267 phpdbg_error("No help topic found for %s", param->str); in PHPDBG_COMMAND()
/PHP-8.1/sapi/fpm/tests/
H A Dfcgi.inc246 * @param int millisecond timeout
300 * @param int $requestId RequestId
320 * @param string $name Name
321 * @param string $value Value
468 * @param string $stdin Content
484 * @param string $stdin Content
509 * @param string $stdin Content
571 * @param $resp Response
572 * @param $type Either err or our
590 * @param int $requestId
[all …]
/PHP-8.1/ext/imap/tests/
H A Dbug80213.phpt9 'type.parameters' => ['param'],
12 'type.parameters' => ['param'],
/PHP-8.1/Zend/tests/
H A Dstr_or_obj_zpp.phpt39 Deprecated: zend_string_or_object(): Passing null to parameter #1 ($param) of type object|string is…
45 zend_string_or_object(): Argument #1 ($param) must be of type object|string, array given
53 zend_string_or_object_or_null(): Argument #1 ($param) must be of type object|string|null, array giv…
H A Dctor_promotion_attributes.phpt16 $param = new ReflectionParameter([Test::class, '__construct'], 'num');
17 var_dump($param->getAttributes()[0]->getName());
H A Dbug80811.phpt10 echo 'Executing without output param:' . PHP_EOL;
18 Executing without output param:
/PHP-8.1/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";
44 -- pass null as second parameter and bogus third param to get back zero-indexed array of all column…
65 -- pass null as second parameter and no third param to get back array_values(input) --
/PHP-8.1/ext/mysqli/tests/
H A Dbug52891.phpt37 $param = 42;
39 if (!$stmt1->bind_param("i", $param))
42 if (!$stmt2->bind_param("i", $param))
53 $param = -4294967297;
58 $param = 43;
67 $param = -4294967295;
71 $param = 4294967295;
78 $param = 4294967297;
/PHP-8.1/Zend/tests/type_declarations/variance/
H A Denum_forward_compat.phpt16 public function method(X $param) : object {}
20 public function method(object $param) : Y {}
/PHP-8.1/ext/bz2/tests/
H A Dbug72447.phpt8 $param = array('blocks' => $input);
11 stream_filter_append($fp, 'bzip2.compress', STREAM_FILTER_WRITE, $param);
/PHP-8.1/Zend/tests/constexpr/
H A Dnew_allowed.phpt15 function test($param = new stdClass) {
17 var_dump($param, $var);
/PHP-8.1/ext/date/tests/
H A Dexamine_diff.inc21 * @param string|DateTime $end_date the end date in YYYY-MM-DD format
23 * @param string|DateTime $start_date the start date in YYYY-MM-DD format
25 * @param string $expect_spec the expected result of the tests, in the
29 * @param int $expect_days the number of days to compare with the
31 * @param bool $absolute should the result always be a positive number?
/PHP-8.1/ext/spl/tests/
H A Ddualiterator.inc36 * @param lhs Left Hand Side Iterator
37 * @param rhs Right Hand Side Iterator
38 * @param flags iteration flags
62 /** @param flags new flags
157 * @param lhs Left Hand Side Iterator
158 * @param rhs Right Hand Side Iterator
159 * @param identical whether to use areEqual() or areIdentical()
/PHP-8.1/ext/gd/tests/
H A Dimageantialias_error2.phpt18 var_dump(imageantialias($image, 'wrong param')); // 'wrogn param' is converted to true
/PHP-8.1/ext/pcre/tests/
H A Dbug21732.phpt6 function cb($param) {
7 var_dump($param);
/PHP-8.1/ext/pdo/
H A Dpdo_sql_parser.re91 struct pdo_bound_param_data *param;
211 param = zend_hash_index_find_ptr(params, plc->bindno);
213 param = zend_hash_str_find_ptr(params, plc->pos, plc->len);
215 if (param == NULL) {
223 if (Z_ISREF(param->parameter)) {
224 parameter = Z_REFVAL(param->parameter);
226 parameter = &param->parameter;
258 enum pdo_param_type param_type = param->param_type;
299 if (Z_ISREF(param->parameter)) {
300 parameter = Z_REFVAL(param->parameter);
[all …]

Completed in 39 milliseconds

123456789