Home
last modified time | relevance | path

Searched refs:j (Results 201 – 225 of 249) sorted by last modified time

12345678910

/PHP-5.5/ext/date/tests/
H A Ddate_format_error.phpt25 $format = "F j, Y, g:i a";
H A Ddate_isodate_set_basic1.phpt25 echo "Week 30 day 3 of 2009 is \"" . date_format($datetime, "D M j") . "\"\n";
29 echo "..same day last year was \"" . date_format($datetime, "D M j") . "\"\n";
H A DDateTime_format_basic1.phpt17 var_dump( $date->format( "F j, Y, g:i a") );
19 var_dump( $date->format( "j, n, Y") );
21 var_dump( $date->format( 'h-i-s, j-m-y, it is w Day') );
23 var_dump( $date->format( "D M j G:i:s T Y") );
H A DDateTime_format_error.phpt23 $format = "F j, Y, g:i a";
H A DDateTime_serialize.phpt16 var_dump( $date2->format( "F j, Y, g:i a") );
H A DDateTime_setISODate_basic1.phpt25 echo "Week 30 day 3 of 2009 is \"" . $datetime->format("D M j") . "\"\n";
29 echo "..same day last year was \"" . $datetime->format("D M j") . "\"\n";
H A Dbug32086.phpt10 echo $j = strtotime("+1 day", $g), "\n";
15 echo date("Y-m-d H:i:s T\n", $j);
21 echo $j = strtotime("+1 day", $g), "\n";
26 echo date("Y-m-d H:i:s T\n", $j);
H A Dbug39782.phpt8 echo $dttTest->format('D M j Y - H:i:s') . "\n";
11 echo $dttTest->format('D M j Y - H:i:s') . "\n";
14 echo $dttTest->format('D M j Y - H:i:s') . "\n";
H A DDateTime_extends_basic1.phpt14 public static $format = "F j, Y, g:i:s a";
H A DDateTime_extends_basic2.phpt24 echo $d->format("F j, Y, g:i:s a") . "\n";
H A DDateTime_extends_basic3.phpt12 public function format($format = "F j, Y, g:i:s a")
H A DDateTime_fix_createFromFormat.phpt18 $fromFormat = DateTime::createFromFormat( "D., M# j, Y g:iA", $string );
20 echo "Format method: " . $orig->format("D., M. j, Y g:iA") . "\n";
21 echo "createFromFormat method: " . $fromFormat->format("D., M. j, Y g:iA") . "\n";
H A D009.phpt17 var_dump(strftime("%a %A %b %B %c %C %d %D %e %g %G %h %H %I %j %m %M %n %p %r %R %S %t %T %u %U %V…
25 var_dump(gmstrftime("%a %A %b %B %c %C %d %D %e %g %G %h %H %I %j %m %M %n %p %r %R %S %t %T %u %U …
H A D009_win32.phpt18 var_dump(strftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t));
28 var_dump(gmstrftime("%a %A %b %B %c %d %H %I %j %m %M %p %S %U %W %w %x %X %y %Y %Z %z %%", $t));
/PHP-5.5/ext/date/lib/
H A Dparse_date.re1888 case 'j': /* two digit day, without leading zero */
H A Dparse_tz.c146 unsigned int i, j; in read_types() local
162 j = i * 6; in read_types()
163 …tz->type[i].offset = (buffer[j] * 16777216) + (buffer[j + 1] * 65536) + (buffer[j + 2] * 256) + bu… in read_types()
164 tz->type[i].isdst = buffer[j + 4]; in read_types()
421 uint32_t j; in fetch_timezone_offset() local
424 j = 0; in fetch_timezone_offset()
425 while (j < tz->bit32.timecnt && tz->type[j].isdst) { in fetch_timezone_offset()
426 ++j; in fetch_timezone_offset()
428 if (j == tz->bit32.timecnt) { in fetch_timezone_offset()
429 j = 0; in fetch_timezone_offset()
[all …]
H A Ddow.c38 static timelib_sll century_value(timelib_sll j) in century_value() argument
40 return 6 - positive_mod(j, 4) * 2; in century_value()
126 int j; in timelib_isoweek_from_date() local
128 j = doy + (7 - weekday) + (jan1weekday - 1); in timelib_isoweek_from_date()
129 *iw = j / 7; in timelib_isoweek_from_date()
/PHP-5.5/ext/com_dotnet/
H A Dcom_typeinfo.c95 unsigned int i, j; in php_com_load_typelib() local
114 for (j = 0; j < VersionCount; j++) { in php_com_load_typelib()
158 int i, j, interfaces; in php_com_import_typelib() local
177 for (j = 0; ; j++) { in php_com_import_typelib()
493 int j; in php_com_process_typeinfo() local
530 for (j = 0; j < func->cParams; j++) { in php_com_process_typeinfo()
531 ELEMDESC *elem = &func->lprgelemdescParam[j]; in php_com_process_typeinfo()
549 if (j+1 < (int)cnames) { in php_com_process_typeinfo()
551 SysFreeString(names[j+1]); in php_com_process_typeinfo()
559 j == func->cParams - 1 ? ' ' : ',' in php_com_process_typeinfo()
[all …]
H A Dcom_com.c471 int i, byref_count = 0, j; in php_com_do_invoke_byref() local
507 for (j = 0, i = 0; i < nargs; i++) { in php_com_do_invoke_byref()
514 if (V_VT(&byref_vals[j]) & VT_BYREF) { in php_com_do_invoke_byref()
515 memcpy(&vargs[i], &byref_vals[j], sizeof(vargs[i])); in php_com_do_invoke_byref()
519 V_VT(&vargs[i]) = V_VT(&byref_vals[j]) | VT_BYREF; in php_com_do_invoke_byref()
521 vargs[i].byref = &V_UINT(&byref_vals[j]); in php_com_do_invoke_byref()
523 j++; in php_com_do_invoke_byref()
552 for (i = 0, j = 0; i < nargs; i++) { in php_com_do_invoke_byref()
561 if (vargs[i].byref == &V_UINT(&byref_vals[j])) { in php_com_do_invoke_byref()
572 VariantClear(&byref_vals[j]); in php_com_do_invoke_byref()
[all …]
/PHP-5.5/ext/bcmath/libbcmath/
H A Dconfigure1291 struct s { int j; const int *ap[3]; };
1292 struct s *b; b->j = 5;
/PHP-5.5/build/
H A Dlibtool.m41203 AC_MSG_WARN([\`$CC' does not support \`-c -o', so \`make -j' may be unsafe])
/PHP-5.5/Zend/
H A Dzend_strtod.c890 int i, j; in cmp() local
897 if (j > 1 && !b->x[j-1]) in cmp()
1564 i += j; in zend_dtoa()
1594 s2 = j; in zend_dtoa()
1597 b2 = -j; in zend_dtoa()
1663 for(; j; j >>= 1, i++) in zend_dtoa()
1672 for(j = j1 >> 4; j; j >>= 1, i++) in zend_dtoa()
1947 if (j < 0 || (j == 0 && !mode in zend_dtoa()
1995 if (j > 0 || (j == 0 && (dig & 1))) { in zend_dtoa()
2254 for(j = 0; e1 > 1; j++, e1 >>= 1) in zend_strtod()
[all …]
H A Dzend_opcode.c259 zend_uint j = 0; in _destroy_zend_class_traits_info() local
261 while (cur_precedence->exclude_from_classes[j]) { in _destroy_zend_class_traits_info()
262 efree(cur_precedence->exclude_from_classes[j]); in _destroy_zend_class_traits_info()
263 j++; in _destroy_zend_class_traits_info()
668 zend_uint i, j; in zend_resolve_finally_calls() local
671 for (i = 0, j = op_array->last; i < j; i++) { in zend_resolve_finally_calls()
H A Dzend_hash.c1447 int i, j; in zend_hash_sort() local
1476 for (j = 1; j < i-1; j++) { in zend_hash_sort()
1477 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1478 arTmp[j]->pListNext = arTmp[j+1]; in zend_hash_sort()
1480 arTmp[j]->pListLast = arTmp[j-1]; in zend_hash_sort()
1481 arTmp[j]->pListNext = NULL; in zend_hash_sort()
H A Dzend_compile.c4076 size_t i, j = 0; in zend_traits_init_trait_structures() local
4118 j = 0; in zend_traits_init_trait_structures()
4119 while (cur_precedence->exclude_from_classes[j]) { in zend_traits_init_trait_structures()
4120 char* class_name = (char*)cur_precedence->exclude_from_classes[j]; in zend_traits_init_trait_structures()
4126 zend_check_trait_usage(ce, cur_precedence->exclude_from_classes[j] TSRMLS_CC); in zend_traits_init_trait_structures()
4140 j++; in zend_traits_init_trait_structures()
4178 size_t i = 0, j; in zend_traits_compile_exclude_table() local
4185 j = 0; in zend_traits_compile_exclude_table()
4186 while (precedences[i]->exclude_from_classes[j]) { in zend_traits_compile_exclude_table()
4187 if (precedences[i]->exclude_from_classes[j] == trait) { in zend_traits_compile_exclude_table()
[all …]

Completed in 125 milliseconds

12345678910