Home
last modified time | relevance | path

Searched refs:format (Results 376 – 400 of 798) sorted by relevance

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

/PHP-5.5/main/
H A Dphp.h281 PHPAPI int php_printf(const char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1,
285 int Debug(char *format, ...) PHP_ATTRIBUTE_FORMAT(printf, 1, 2);
299 PHPAPI void php_verror(const char *docref, const char *params, int type, const char *format, va_lis…
308 PHPAPI void php_error_docref0(const char *docref TSRMLS_DC, int type, const char *format, ...)
310 …_error_docref1(const char *docref TSRMLS_DC, const char *param1, int type, const char *format, ...)
312 … char *docref TSRMLS_DC, const char *param1, const char *param2, int type, const char *format, ...)
/PHP-5.5/ext/pdo/tests/
H A Dbug_44159.phpt28 …te(): SQLSTATE[HY000]: General error: PDO::ATTR_STATEMENT_CLASS requires format array(classname, a…
31 …te(): SQLSTATE[HY000]: General error: PDO::ATTR_STATEMENT_CLASS requires format array(classname, a…
34 …te(): SQLSTATE[HY000]: General error: PDO::ATTR_STATEMENT_CLASS requires format array(classname, a…
/PHP-5.5/ext/date/tests/
H A Ddate_period.phpt12 echo $dt->modify( "3 tuesday" )->format( "l Y-m-d\n" );
23 echo $dt->format( "l Y-m-d H:i:s\n" );
H A Dbug51866.phpt17 list($format, $str) = $test;
18 var_dump($format, $str);
19 $d = DateTime::createFromFormat($format, $str);
H A Dgmstrftime_variation8.phpt2 Test gmstrftime() function : usage variation - Passing literal related strings to format argument.
5 /* Prototype : string gmstrftime(string format [, int timestamp])
H A Dbug29595.phpt2 Bug #29595 (Roman number format for months)
H A Dbug43075.phpt7 echo $d->format("c");
H A Dbug35705.phpt2 Bug #35705 (strtotime() fails to parse soap date format without TZ)
/PHP-5.5/ext/standard/tests/file/
H A Dfscanf_variation51.phpt7 Prototype: mixed fscanf ( resource $handle, string $format [, mixed &$...] );
8 Description: Parses input from a file according to a format
49 foreach($formats as $format) {
50 var_dump( fscanf($file_handle,$format) );
H A Dfscanf_variation26.phpt7 Prototype: mixed fscanf ( resource $handle, string $format [, mixed &$...] );
8 Description: Parses input from a file according to a format
11 /* Test fscanf() to scan different chars using different char format types */
15 echo "*** Test fscanf(): different char format types with chars ***\n";
69 *** Test fscanf(): different char format types with chars ***
H A Dfscanf_variation52.phpt7 Prototype: mixed fscanf ( resource $handle, string $format [, mixed &$...] );
8 Description: Parses input from a file according to a format
47 foreach($formats as $format) {
48 var_dump( fscanf($file_handle,$format) );
H A Dfscanf_variation1.phpt7 Prototype: mixed fscanf ( resource $handle, string $format [, mixed &$...] );
8 Description: Parses input from a file according to a format
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_alloc.h48 int (*m_sprintf)(char **pbuf, size_t max_len, const char *format, ...);
49 int (*m_vsprintf)(char **pbuf, size_t max_len, const char *format, va_list ap);
69 PHPAPI int _mysqlnd_sprintf(char **pbuf, size_t max_len, const char *format, ...);
71 PHPAPI int _mysqlnd_vsprintf(char **pbuf, size_t max_len, const char *format, va_list ap);
H A Dmysqlnd_debug.h36 unsigned int level, const char * type, const char *format, ...);
206 static inline void DBG_INF_FMT(const char * const format, ...) {} in DBG_INF_FMT() argument
207 static inline void DBG_ERR_FMT(const char * const format, ...) {} in DBG_ERR_FMT() argument
217 static inline void TRACE_ALLOC_INF_FMT(const char * const format, ...) {} in TRACE_ALLOC_INF_FMT() argument
218 static inline void TRACE_ALLOC_ERR_FMT(const char * const format, ...) {} in TRACE_ALLOC_ERR_FMT() argument
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_format.phpt50 function test_format($link, $format, $from, $order_by, $expected, $offset) {
60 $sql = sprintf('SELECT %s AS _format FROM %s ORDER BY %s', $format, $from, $order_by);
62 $sql = sprintf('SELECT %s AS _format FROM %s', $format, $from);
107 $format, $sql);
129 $format, $sql);
265 $trend = $targetport = $format = null;
266 if (!mysqli_stmt_bind_result($stmt, $trend, $targetport, $format)) {
277 printf("%s/%s - %s/%s - '%s'\n", $trend, $exp_trend, $targetport, $exp_targetport, $format);
304 $trend = $targetport = $format = null;
305 if (!$stmt->bind_result($trend, $targetport, $format)) {
[all …]
H A Dbug42378.phpt51 function test_format($link, $format, $from, $order_by, $expected, $offset) {
59 print "$format\n";
62 $sql = sprintf('SELECT %s AS _format FROM %s ORDER BY %s', $format, $from, $order_by);
64 $sql = sprintf('SELECT %s AS _format FROM %s', $format, $from);
109 $format, $sql);
142 $format, $sql);
/PHP-5.5/ext/phar/tests/tar/
H A Dbignames.phpt54 …aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" is too long for tar file format
55 …aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" is too long for tar file format
56 …aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" is too long for tar file format
/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation17.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
34 foreach($string_formats as $format) {
35 var_dump( sprintf($format, $resource_value) );
H A Dsprintf_variation29.phpt11 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
42 foreach($octal_formats as $format) {
43 var_dump( sprintf($format, $float_value) );
H A Dsprintf_variation29_64bit.phpt7 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
38 foreach($octal_formats as $format) {
39 var_dump( sprintf($format, $float_value) );
H A Dsprintf_variation22.phpt5 /* Prototype : string sprintf(string $format [, mixed $arg1 [, mixed ...]])
36 foreach($char_formats as $format) {
37 var_dump( sprintf($format, $float_value) );
H A Dvsprintf_variation2.phpt5 /* Prototype : string vsprintf(string format, array args)
18 $format = '%s';
87 var_dump( vsprintf($format,$value) );
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_debug.h31 void zend_accel_error(int type, const char *format, ...);
/PHP-5.5/ext/intl/tests/
H A Dmsgfmt_format_simple_types_numeric_strings.phpt2 MessageFormatter::format(): simple types handling with numeric strings
30 var_dump($mf->format(array(
/PHP-5.5/ext/spl/tests/
H A Dbug51532.phpt7 public function fscanf($format) {

Completed in 33 milliseconds

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