/php-src/ext/opcache/ |
H A D | zend_accelerator_debug.h | 33 void zend_accel_error(int type, const char *format, ...) ZEND_ATTRIBUTE_FORMAT(printf, 2, 3); 34 ZEND_NORETURN void zend_accel_error_noreturn(int type, const char *format, ...) ZEND_ATTRIBUTE_FORM…
|
/php-src/ext/date/tests/ |
H A D | date_interval_non_relative_warning.phpt | 12 foreach ($formats as $format) { 14 $d = DateInterval::createFromDateString($format); 22 foreach ($formats as $format) { 23 $d = date_interval_create_from_date_string($format);
|
H A D | 012.phpt | 9 var_dump($dto->format("Y/m/d H:i:s")); 11 var_dump($dto->format("Y/m/d H:i:s")); 13 var_dump($dto->format("Y/m/d H:i:s"));
|
H A D | 013.phpt | 9 var_dump($dto->format("Y.m.d H:i:s")); 11 var_dump($dto->format("Y.m.d H:i:s")); 13 var_dump($dto->format("Y.m.d H:i:s"));
|
H A D | bug71889.phpt | 2 Bug #71889 (DateInterval::format segfault on '%' input) 8 var_dump($di->format("%"));
|
H A D | bug-gh8964-002.phpt | 16 echo $expectedLower->format( 'H:i:s.u U' ), "\n"; 17 echo $actual ->format( 'H:i:s.u U' ), "\n"; 18 echo $expectedUpper->format( 'H:i:s.u U' ), "\n";
|
H A D | bug45866.phpt | 9 echo $date->format( 'r' ), "\n"; 13 echo $date->format( 'r' ), "\n"; 21 echo $date->format( 'r' ), "\n";
|
H A D | gmstrftime_variation9.phpt | 32 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead … 35 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead … 40 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead … 43 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead …
|
H A D | strftime_variation9.phpt | 32 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in… 35 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in… 40 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in… 43 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in…
|
H A D | gmstrftime_variation19.phpt | 32 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead … 36 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead … 42 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead … 45 Deprecated: Function gmstrftime() is deprecated since 8.1, use IntlDateFormatter::format() instead …
|
H A D | strftime_variation19.phpt | 32 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in… 36 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in… 42 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in… 45 Deprecated: Function strftime() is deprecated since 8.1, use IntlDateFormatter::format() instead in…
|
H A D | test-parse-from-format.phpt | 12 foreach( $formats as $format ) 15 $formatted = $date->format( $format ) ; 16 $date2 = date_create_from_format( $format, $formatted ); 17 var_dump( $format, $formatted, $date2 ); 21 var_dump(date_parse_from_format( $format, $formatted ) );
|
H A D | bug80057.phpt | 7 $nowStr = $now->format("H:i"); 8 $parsedStr = $parsed->format("H:i");
|
/php-src/ext/mysqli/ |
H A D | mysqli_exception.c | 28 void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, ...) in php_mysqli_throw_sql_exception() argument 34 va_start(arg, format); in php_mysqli_throw_sql_exception() 35 vspprintf(&message, 0, format, arg); in php_mysqli_throw_sql_exception()
|
/php-src/ext/standard/tests/strings/ |
H A D | vprintf_variation14.phpt | 11 * the '$format' and '$args' arguments of the function 24 // Arrays of non hexa values for the format defined in $format. 25 // Each sub array contains non hexa values which correspond to each format in $format 65 // looping to test vprintf() with different hexa formats from the above $format array
|
H A D | vprintf_variation14_64bit.phpt | 11 * the '$format' and '$args' arguments of the function 24 // Arrays of non hexa values for the format defined in $format. 25 // Each sub array contains non hexa values which correspond to each format in $format 65 // looping to test vprintf() with different hexa formats from the above $format array
|
H A D | number_format_basic.phpt | 31 echo "\n-- number_format tests.....English format --\n"; 37 echo "\n-- number_format tests.....French format --\n"; 72 -- number_format tests.....English format -- 85 -- number_format tests.....French format --
|
H A D | vprintf_variation18.phpt | 7 * the '$format' and '$args' arguments of the function 20 // Arrays of non scientific values for the format defined in $format. 21 // Each sub array contains non scientific values which correspond to each format in $format 54 // looping to test vprintf() with different scientific formats from the above $format array
|
H A D | sprintf_f_2.phpt | 20 $format = 'There are %d monkeys in the %s'; 21 var_dump(sprintf($format, $num, $location)); 24 $format = 'The %s contains %d monkeys'; 25 var_dump(sprintf($format, $num, $location)); 28 $format = 'The %2$s contains %1$d monkeys'; 29 var_dump(sprintf($format, $num, $location)); 32 $format = 'The %2$s contains %1$d monkeys. 34 var_dump(sprintf($format, $num, $location));
|
/php-src/ext/standard/ |
H A D | scanf.h | 37 PHPAPI int ValidateFormat(char *format, int numVars, int *totalVars); 38 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval *args,
|
/php-src/main/ |
H A D | spprintf.h | 25 PHPAPI void php_printf_to_smart_string(smart_string *buf, const char *format, va_list ap); 26 PHPAPI void php_printf_to_smart_str(smart_str *buf, const char *format, va_list ap);
|
/php-src/ext/intl/tests/ |
H A D | msgfmt_format_intlcalendar.phpt | 16 echo $msgf->format(array($cal)), "\n"; 22 echo "msgf2: ", $msgf->format(array($time, 'date')), " ", 23 $msgf->format(array($time, 'time')), "\n";
|
H A D | msgfmt_format_error1.phpt | 2 MessageFormatter::format() insufficient numeric arguments 14 var_dump($mf->format(array(7)));
|
/php-src/ext/ffi/tests/ |
H A D | bug77768.phpt | 8 $libc = FFI::cdef("int printf(const char *format, ...);", "libc.so.6"); 31 int printf(const char *format, ...); 32 int printf(const char *format, ...);
|
/php-src/ext/session/tests/ |
H A D | gh13680.phpt | 19 public static function createFromFormat($format, $datetime, $timezone = null): Wrong {} 25 …between Test::createFromFormat($format, $datetime, $timezone = null): Wrong and DateTime::createFr…
|