Home
last modified time | relevance | path

Searched refs:now (Results 1 – 25 of 183) sorted by path

12345678

/PHP-7.4/
H A DNEWS1399 . The built-in CLI server now reports the request method in log files.
1464 . The bundled libgd behaves now like system libgd wrt. IMG_CROP_DEFAULT never
1467 IMG_CROP_DEFAULT; passing -1 is now deprecated.
1482 . The hash extension is now an integral part of PHP and cannot be disabled
1564 . openssl_random_pseudo_bytes() now throws in error conditions.
H A DUPGRADING121 explicitly prohibited now.
165 * PASSWORD_BCRYPT was int 1; now is string '2y'
166 * PASSWORD_ARGON2I was int 2; now is string 'argon2i'
184 . round(-0.0) will now return -0.0 rather than +0.0.
215 contravariance. The following code will now work:
324 . PDOStatement::getColumnMeta() is now available
589 IMG_CROP_DEFAULT; passing -1 is now deprecated.
602 . The Intl extension now requires at least ICU 50.1.
603 . ResourceBundle now implements Countable.
639 . SimpleXMLElement now implements Countable.
[all …]
H A DUPGRADING.INTERNALS56 clone, now we use the same private property_info, and should also
117 g. The following object handlers are now required (must be non-NULL):
146 class_entry->static_members_table now have to be accessed through
149 op_arrays. Instead, now you have to reserve op_array handle using
171 m. The write_property() object handler now returns the assigned value (after
175 n. Assignments to references now need to ensure that they respect property
221 ZEND_ASSIGN_STATIC_PROP in extended value, now we use ZEND_ASSIGN_OP,
229 y. The read and write operations of php_stream_ops now return ssize_t, with
237 - The hash extension is now always available, meaning the --enable-hash
276 - new --enable-rtld-now build option allow to switch dlopen behavior
[all …]
H A Dconfigure.ac845 PHP_ARG_ENABLE([rtld-now],
847 [AS_HELP_STRING([--enable-rtld-now],
/PHP-7.4/Zend/
H A DREADME.md59 same as in old `zend_execute.c`, but now it uses macros to access opcode
/PHP-7.4/Zend/tests/
H A D019.phpt184 // now the isset() with both the args as unset
H A Dbug33512.phpt52 // now we will try to unset these variables
H A Dbug37632.phpt61 /* Right now Ctor's cannot be made protected when defined in a ctor. That is
H A Dbug60536_002.phpt21 // now we do the test for a fatal error
H A Dbug60536_004.phpt22 // now the same with a class that defines the property itself,
H A Dbug60536_005.phpt22 // now the same with a class that defines the property itself, too.
H A Dbug71859.phpt7 //We are now in zend_objects_store_call_destructors
H A Derrmsg_024.phpt2 No more errmsg: can now change initial value of property
/PHP-7.4/Zend/tests/traits/
H A Dproperty005.phpt21 // now we do the test for a fatal error
H A Dproperty006.phpt22 // now the same with a class that defines the property itself,
H A Dproperty007.phpt22 // now the same with a class that defines the property itself, too.
/PHP-7.4/build/
H A Dlibtool.m41331 # Ok, now we have the path, separated by spaces, we can step through it
4748 # AIX 5 now supports IA64 processor
4806 # AIX 5 now supports IA64 processor
5035 # AIX 5 now supports IA64 processor
5106 # AIX 5 now supports IA64 processor
/PHP-7.4/docs/
H A Dmailinglist-rules.md60 2. Consider taking a step back from a very active thread now and then. Maybe
H A Doutput-api.md3 Everything now resides beneath the php_output namespace, and there's an API call
H A Drelease-process.md261 this last commit id to `web/php.git`, then, website will now sync.
H A Dself-contained-extensions.md9 We will describe now how to create these and how to put things together.
34 You now have an empty directory. We will copy the files from the mysqli
47 You can now ship the contents of the directory - the extension can live
126 And that's it. You now have a self-contained extension.
141 module. The following will explain now how you can add shared module support to
H A Dstreams.md349 /* now allocate the stream itself */
352 /* now stream->abstract == state */
H A Dunix-build-system.md40 the `config.m4` now using the following macro:
/PHP-7.4/ext/date/lib/
H A Dparse_date.c25560 if (parsed->us == TIMELIB_UNSET) parsed->us = now->us != TIMELIB_UNSET ? now->us : 0; in timelib_fill_holes()
25562 if (parsed->y == TIMELIB_UNSET) parsed->y = now->y != TIMELIB_UNSET ? now->y : 0; in timelib_fill_holes()
25563 if (parsed->m == TIMELIB_UNSET) parsed->m = now->m != TIMELIB_UNSET ? now->m : 0; in timelib_fill_holes()
25564 if (parsed->d == TIMELIB_UNSET) parsed->d = now->d != TIMELIB_UNSET ? now->d : 0; in timelib_fill_holes()
25565 if (parsed->h == TIMELIB_UNSET) parsed->h = now->h != TIMELIB_UNSET ? now->h : 0; in timelib_fill_holes()
25566 if (parsed->i == TIMELIB_UNSET) parsed->i = now->i != TIMELIB_UNSET ? now->i : 0; in timelib_fill_holes()
25567 if (parsed->s == TIMELIB_UNSET) parsed->s = now->s != TIMELIB_UNSET ? now->s : 0; in timelib_fill_holes()
25568 if (parsed->z == TIMELIB_UNSET) parsed->z = now->z != TIMELIB_UNSET ? now->z : 0; in timelib_fill_holes()
25569 if (parsed->dst == TIMELIB_UNSET) parsed->dst = now->dst != TIMELIB_UNSET ? now->dst : 0; in timelib_fill_holes()
25572 parsed->tz_abbr = now->tz_abbr ? timelib_strdup(now->tz_abbr) : NULL; in timelib_fill_holes()
[all …]
H A Dparse_date.re1030 'now'
1032 DEBUG_OUTPUT("now");
2454 if (parsed->y == TIMELIB_UNSET) parsed->y = now->y != TIMELIB_UNSET ? now->y : 0;
2455 if (parsed->m == TIMELIB_UNSET) parsed->m = now->m != TIMELIB_UNSET ? now->m : 0;
2456 if (parsed->d == TIMELIB_UNSET) parsed->d = now->d != TIMELIB_UNSET ? now->d : 0;
2457 if (parsed->h == TIMELIB_UNSET) parsed->h = now->h != TIMELIB_UNSET ? now->h : 0;
2458 if (parsed->i == TIMELIB_UNSET) parsed->i = now->i != TIMELIB_UNSET ? now->i : 0;
2464 parsed->tz_abbr = now->tz_abbr ? timelib_strdup(now->tz_abbr) : NULL;
2467 …parsed->tz_info = now->tz_info ? (!(options & TIMELIB_NO_CLONE) ? timelib_tzinfo_clone(now->tz_inf…
2471 /* parsed->tz_abbr = now->tz_abbr ? timelib_strdup(now->tz_abbr) : NULL;
[all …]

Completed in 84 milliseconds

12345678