Home
last modified time | relevance | path

Searched refs:param (Results 76 – 100 of 291) sorted by relevance

12345678910>>...12

/PHP-7.0/ext/spl/examples/
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-7.0/ext/xmlrpc/tests/
H A Dbug72647.phpt19 <param>
35 </param>
H A Dbug70728.phpt19 <param>
23 </param>
H A Dbug70728_64bit.phpt19 <param>
23 </param>
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_help.c237 if (!param || param->type == EMPTY_PARAM) { in PHPDBG_COMMAND()
242 if (param && param->type == STR_PARAM) { in PHPDBG_COMMAND()
243 n = get_command(param->str, param->len, &cmd, phpdbg_prompt_commands); in PHPDBG_COMMAND()
251 if (param->len > 1) { in PHPDBG_COMMAND()
253 if (!strncmp(cmd->name, param->str, param->len)) { in PHPDBG_COMMAND()
260 …e=\"ambiguousalias\" alias=\"%s\"", "Internal help error, non-unique alias \"%c\"", param->str[0]); in PHPDBG_COMMAND()
265 n = get_command( param->str, param->len, &cmd, phpdbg_help_commands); in PHPDBG_COMMAND()
269 return cmd->handler(param); in PHPDBG_COMMAND()
/PHP-7.0/ext/gd/tests/
H A Dimagerectangle_error1.phpt2 Testing wrong param passing imagerectangle() of GD library
16 imagerectangle( 'wrong param', 0, 0, 50, 50, imagecolorallocate($image, 255, 255, 255) );
H A Dimagerectangle_error3.phpt2 Testing wrong param passing imagerectangle() of GD library
16 imagerectangle( $image, 'wrong param', 0, 50, 50, imagecolorallocate($image, 255, 255, 255) );
H A Dimagerectangle_error4.phpt2 Testing wrong param passing imagerectangle() of GD library
16 imagerectangle( $image, 0, 'wrong param', 50, 50, imagecolorallocate($image, 255, 255, 255) );
H A Dimagerectangle_error7.phpt2 Testing wrong param passing imagerectangle() of GD library
16 imagerectangle( $image, 0, 0, 50, 50, 'wrong param' );
H A Dimagerectangle_error5.phpt2 Testing wrong param passing imagerectangle() of GD library
16 imagerectangle( $image, 0, 0, 'wrong param', 50, imagecolorallocate($image, 255, 255, 255) );
H A Dimagerectangle_error6.phpt2 Testing wrong param passing imagerectangle() of GD library
16 imagerectangle( $image, 0, 0, 50, 'wrong param', imagecolorallocate($image, 255, 255, 255) );
H A Dimageellipse_error1.phpt2 Testing wrong param passing imageellipse() of GD library
17 imageellipse('wrong param', 200, 150, 300, 200, 16777215);
H A Dimageellipse_error2.phpt2 Testing wrong param passing imageellipse() of GD library
17 imageellipse($image, 'wrong param', 150, 300, 200, 16777215);
H A Dimageellipse_error3.phpt2 Testing wrong param passing imageellipse() of GD library
17 imageellipse($image, 200, 'wrong param', 300, 200, 16777215);
H A Dimageellipse_error4.phpt2 Testing wrong param passing imageellipse() of GD library
17 imageellipse($image, 200, 150, 'wrong param', 200, 16777215);
H A Dimageellipse_error5.phpt2 Testing wrong param passing imageellipse() of GD library
17 imageellipse($image, 200, 150, 300, 'wrong param', 16777215);
H A Dimageellipse_error6.phpt2 Testing wrong param passing imageellipse() of GD library
17 imageellipse($image, 200, 150, 300, 200, 'wrong param');
/PHP-7.0/sapi/fpm/tests/
H A Dfcgi.inc235 * @param Integer millisecond timeout
271 * @param Integer $type Type of the packet
272 * @param String $content Content of the packet
273 * @param Integer $requestId RequestId
292 * @param String $name Name
293 * @param String $value Value
428 * @param array $params Array of parameters
429 * @param String $stdin Content
449 * @param array $params Array of parameters
450 * @param String $stdin Content
[all …]
/PHP-7.0/ext/imap/tests/
H A Dimap_include.inc36 * @param array resp element from the return value of imap_fetch_overview()
61 * @param string mailbox_suffix Suffix used to uniquely identify mailboxes
62 * @param int message_count number of test msgs to be written to new mailbox
98 * @param resource $imap_stream
99 * @param string $mailbox
131 * @param resource $imap_stream
132 * @param string $mailbox
183 * @param string mailbox complete mailbox name
/PHP-7.0/ext/reflection/tests/
H A DReflectionFunction_getClosureScopeClass.phpt11 $closure = function($param) { return "this is a closure"; };
17 return function($param) { return "this is a closure"; };
/PHP-7.0/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-7.0/ext/soap/
H A Dphp_packet_soap.c260 sdlParamPtr param = NULL; in parse_packet_soap() local
271 ZEND_HASH_FOREACH_PTR(fn->responseParameters, param) { in parse_packet_soap()
273 if (param->element) { in parse_packet_soap()
274 name = param->element->name; in parse_packet_soap()
275 ns = param->element->namens; in parse_packet_soap()
281 name = param->paramName; in parse_packet_soap()
301 val = get_node(cur->children, param->paramName); in parse_packet_soap()
326 if (param != NULL) { in parse_packet_soap()
327 master_to_zval(&tmp, param->encode, val); in parse_packet_soap()
332 add_assoc_zval(return_value, param->paramName, &tmp); in parse_packet_soap()
/PHP-7.0/Zend/tests/
H A Dbug72038.phpt13 function test(&$param) {
14 $param = 1;
/PHP-7.0/ext/phar/tests/zip/files/
H A Dzipmaker.php.inc27 * @param string relative path within the package
28 * @param string|resource file contents or open file handle
56 * @param string $dir
/PHP-7.0/ext/oci8/
H A Doci8_statement.c489 OCIParam *param = NULL; in php_oci_statement_execute() local
1113 zval *param = NULL; in php_oci_bind_by_name() local
1116 param = Z_REFVAL_P(var); in php_oci_bind_by_name()
1164 if (Z_TYPE_P(param) == IS_RESOURCE || Z_TYPE_P(param) == IS_OBJECT) { in php_oci_bind_by_name()
1168 convert_to_long(param); in php_oci_bind_by_name()
1179 if (Z_TYPE_P(param) == IS_RESOURCE || Z_TYPE_P(param) == IS_OBJECT) { in php_oci_bind_by_name()
1183 if (Z_TYPE_P(param) != IS_NULL) { in php_oci_bind_by_name()
1184 convert_to_string(param); in php_oci_bind_by_name()
1217 if (Z_TYPE_P(param) == IS_RESOURCE || Z_TYPE_P(param) == IS_OBJECT) { in php_oci_bind_by_name()
1221 convert_to_boolean(param); in php_oci_bind_by_name()
[all …]

Completed in 39 milliseconds

12345678910>>...12