Home
last modified time | relevance | path

Searched refs:input (Results 326 – 350 of 844) sorted by relevance

1...<<11121314151617181920>>...34

/PHP-5.5/ext/standard/tests/strings/
H A Dcount_chars_variation2.phpt21 // array with different values for $input
72 foreach($inputs as $input) {
75 var_dump(is_array(count_chars($string, $input)));
/PHP-5.5/ext/phar/phar/
H A Dpharcommand.inc445 "excluded from the list of input files/dirs." .
572 $input = $this->args['']['val'];
582 if (!is_array($input)) {
585 foreach($input as $i) {
622 * @param string $input The input directory
631 if ($input && is_file($input) && !is_dir($input)) {
632 return self::phar_add_file($phar, $level, $input, $input, $compress);
634 $dir = new RecursiveDirectoryIterator($input);
1003 $input = $this->args['']['val'];
1007 if (!is_array($input)) {
[all …]
/PHP-5.5/ext/pgsql/tests/
H A Dbug65119.phpt2 Bug #65119 (pg_copy_from() modifies input array variable)
/PHP-5.5/ext/standard/tests/math/
H A Dmt_srand_basic.phpt6 // This doesn't actually test what it does with the input :-\
H A Ddechex_variation1.phpt86 foreach($inputs as $input) {
88 var_dump(dechex($input));
H A Ddechex_variation1_64bit.phpt86 foreach($inputs as $input) {
88 var_dump(dechex($input));
H A Ddecoct_variation1.phpt87 foreach($inputs as $input) {
89 var_dump(decoct($input));
H A Ddecoct_variation1_64bit.phpt87 foreach($inputs as $input) {
89 var_dump(decoct($input));
H A Datanh_basic.phpt2 Test return type and value for expected input atanh()
H A Dacosh_basic.phpt2 Test return type and value for expected input acosh()
H A Dasinh_basic.phpt2 Test return type and value for expected input asinh()
/PHP-5.5/ext/spl/tests/
H A DSplObjectStorage_removeAllExcept_basic.phpt2 Check that SplObjectStorage::removeUncommon functions when receiving proper input
/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c629 const char *input; member
671 const char *input; member
713 sha256_process_bytes(tests[cnt].input, strlen(tests[cnt].input), &ctx); in main()
721 for (i = 0; tests[cnt].input[i] != '\0'; ++i) { in main()
722 sha256_process_bytes(&tests[cnt].input[i], 1, &ctx); in main()
747 char *cp = php_sha256_crypt(tests2[cnt].input, tests2[cnt].salt); in main()
/PHP-5.5/ext/session/tests/
H A D018.phpt27 <form accept-charset="ISO-8859-15, ISO-8859-1" action=url.php><input type="hidden" name="PHPSESSID"…
H A Dsession_regenerate_id_error.phpt85 foreach($inputs as $input) {
87 var_dump(session_regenerate_id($input));
/PHP-5.5/ext/standard/tests/array/
H A Darray_product_variation2.phpt5 /* Prototype : mixed array_product(array input)
H A Darray_values.phpt7 /* Prototype: array array_values ( array $input );
8 Discription: array_values() returns all the values from the input array
H A Darray_push_variation2.phpt90 foreach($inputs as $input) {
93 var_dump( array_push($temp_array, $input) );
H A Darray_product_variation4.phpt5 /* Prototype : mixed array_product(array input)
H A Dbug20381.phpt2 Bug #20381 (array_merge_recursive mangles input arrays)
/PHP-5.5/ext/xmlreader/tests/
H A D001.phpt28 Warning: XMLReader::XML(): Empty string supplied as input in %s on line %d
/PHP-5.5/sapi/tests/
H A Dtest005.phpt27 No input file specified.
/PHP-5.5/ext/ctype/tests/
H A Dctype_digit_variation1.phpt91 foreach($inputs as $input) {
93 var_dump( ctype_digit($input) );
H A Dctype_upper_variation1.phpt91 foreach($inputs as $input) {
93 var_dump( ctype_upper($input) );
/PHP-5.5/ext/filter/
H A Dfilter.c681 static void php_filter_array_handler(zval *input, zval **op, zval *return_value, zend_bool add_empt… in php_filter_array_handler() argument
691 MAKE_COPY_ZVAL(&input, return_value); in php_filter_array_handler()
695 MAKE_COPY_ZVAL(&input, return_value); in php_filter_array_handler()
715 if (zend_hash_find(Z_ARRVAL_P(input), arg_key, arg_key_len, (void **)&tmp) != SUCCESS) { in php_filter_array_handler()
742 zval *input = NULL; in PHP_FUNCTION() local
754 input = php_filter_get_storage(fetch_from TSRMLS_CC); in PHP_FUNCTION()
756 …if (!input || !HASH_OF(input) || zend_hash_find(HASH_OF(input), var, var_len + 1, (void **)&tmp) !… in PHP_FUNCTION()

Completed in 141 milliseconds

1...<<11121314151617181920>>...34