Home
last modified time | relevance | path

Searched refs:format (Results 401 – 425 of 798) sorted by relevance

1...<<11121314151617181920>>...32

/PHP-5.5/ext/date/tests/
H A Dbug36599.phpt2 Bug #36599 (DATE_W3C format constant incorrect).
H A Dbug29150.phpt2 Bug #29150 (Roman number format for months)
H A Dbug41842.phpt8 echo $date->format(DATE_ISO8601);
H A Dtimestamp-in-dst.phpt8 var_dump( date_create( '@1202996091' )->format( 'c' ) );
H A Dbug54283.phpt14 string(51) "DatePeriod::__construct(): Unknown or bad format ()"
H A DDateTime_construct-dst-overlap.phpt11 echo $d->format('P') . "\n";
H A Dbug35456.phpt2 Bug #35456 (+ 1 [time unit] format did not work)
/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation27.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
28 foreach($char_formats as $format) {
29 var_dump( sprintf($format, $char_value) );
H A Dvfprintf_variation21.phpt5 /* Prototype : int vfprintf ( resource $handle , string $format , array $args )
18 $format = '%s';
93 vfprintf($fp, $format, $value);
H A Dvprintf_variation2.phpt5 /* Prototype : string vprintf(string format, array args)
18 $format = '%s';
87 $result = vprintf($format,$value);
H A Dstr_word_count.phpt78 Warning: str_word_count(): Invalid format value 3 in %s on line %d
81 Warning: str_word_count(): Invalid format value 123 in %s on line %d
84 Warning: str_word_count(): Invalid format value -1 in %s on line %d
87 Warning: str_word_count(): Invalid format value 999999999 in %s on line %d
H A Dsprintf_variation31.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
41 foreach($octal_formats as $format) {
42 var_dump( sprintf($format, $array_value) );
H A Dsprintf_variation4.phpt11 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
47 foreach($int_formats as $format) {
48 var_dump( sprintf($format, $float_value) );
H A Dsprintf_variation4_64bit.phpt7 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
43 foreach($int_formats as $format) {
44 var_dump( sprintf($format, $float_value) );
H A Dsprintf_variation43.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
42 foreach($unsigned_formats as $format) {
43 var_dump( sprintf($format, $array_value) );
/PHP-5.5/ext/gd/libgd/
H A Dxbm.c159 void gdCtxPrintf(gdIOCtx * out, const char *format, ...) in gdCtxPrintf() argument
165 va_start(args, format); in gdCtxPrintf()
166 len = vspprintf(&buf, 0, format, args); in gdCtxPrintf()
H A Dgdkanji.c59 debug (const char *format,...) in debug() argument
64 va_start (args, format); in debug()
66 vfprintf (stdout, format, args); in debug()
73 error (const char *format,...) in error() argument
79 va_start(args, format); in error()
80 vspprintf(&tmp, 0, format, args); in error()
/PHP-5.5/Zend/
H A Dzend.h163 # define ZEND_ATTRIBUTE_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
169 # define ZEND_ATTRIBUTE_PTR_FORMAT(type, idx, first) __attribute__ ((format(type, idx, first)))
294 void zend_error_noreturn(int type, const char *format, ...) __attribute__ ((noreturn));
543 …t type, const char *error_filename, const uint error_lineno, const char *format, va_list args) ZEN…
544 int (*printf_function)(const char *format, ...) ZEND_ATTRIBUTE_PTR_FORMAT(printf, 1, 2);
554 int (*vspprintf_function)(char **pbuf, size_t max_len, const char *format, va_list ap);
651 ZEND_API void zend_output_debug_string(zend_bool trigger_break, const char *format, ...) ZEND_ATTRI…
689 extern ZEND_API int (*zend_printf)(const char *format, ...) ZEND_ATTRIBUTE_PTR_FORMAT(printf, 1, 2);
695 …t type, const char *error_filename, const uint error_lineno, const char *format, va_list args) ZEN…
698 extern int (*zend_vspprintf)(char **pbuf, size_t max_len, const char *format, va_list ap);
[all …]
H A Dzend.c48 ZEND_API int (*zend_printf)(const char *format, ...);
1017 ZEND_API void zend_error(int type, const char *format, ...) /* {{{ */ in zend_error() argument
1105 va_start(args, format); in zend_error()
1106 zend_vspprintf(&dtrace_error_buffer, 0, format, args); in zend_error()
1113 va_start(args, format); in zend_error()
1119 zend_error_cb(type, error_filename, error_lineno, format, args); in zend_error()
1128 zend_error_cb(type, error_filename, error_lineno, format, args); in zend_error()
1218 zend_error_cb(type, error_filename, error_lineno, format, args); in zend_error()
1274 va_start(args, format); in zend_output_debug_string()
1279 vsnprintf(output_buf, 1024, format, args); in zend_output_debug_string()
[all …]
/PHP-5.5/ext/date/
H A DTODO1 - Port over my 200 test cases to .phpt format.
H A Dphp_date.h183 PHPAPI int php_idate(char format, time_t ts, int localtime TSRMLS_DC);
188 PHPAPI char *php_format_date(char *format, int format_len, time_t ts, int localtime TSRMLS_DC);
201 …php_date_obj *dateobj, /*const*/ char *time_str, int time_str_len, char *format, zval *timezone_ob…
H A Dphp_date.c62 ZEND_ARG_INFO(0, format)
67 ZEND_ARG_INFO(0, format)
72 ZEND_ARG_INFO(0, format)
108 ZEND_ARG_INFO(0, format)
113 ZEND_ARG_INFO(0, format)
138 ZEND_ARG_INFO(0, format)
147 ZEND_ARG_INFO(0, format)
1219 char *format; in php_date() local
1308 switch (format) { in php_idate()
1378 char *format; in PHP_FUNCTION() local
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dfscanf_variation53.phpt7 Prototype: mixed fscanf ( resource $handle, string $format [, mixed &$...] );
8 Description: Parses input from a file according to a format
63 foreach($formats as $format) {
64 var_dump( fscanf($file_handle,$format) );
/PHP-5.5/ext/openssl/tests/
H A Dbug65698.phpt2 Bug #65689 (GeneralizedTime format parsing)
/PHP-5.5/ext/mysqli/
H A Dmysqli_report.c30 extern void php_mysqli_throw_sql_exception(char *sqlstate, int errorno TSRMLS_DC, char *format, ...…

Completed in 51 milliseconds

1...<<11121314151617181920>>...32