Changeset 60297 for trunk/src/wp-includes/pluggable.php
- Timestamp:
- 06/11/2025 02:19:57 PM (7 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/pluggable.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r60275 r60297 2677 2677 * - `PASSWORD_DEFAULT` 2678 2678 * 2679 * The values of the algorithm constants are strings in PHP 7.4+ and integers in PHP 7.3 and earlier. 2680 * 2679 2681 * @since 6.8.0 2680 2682 * 2681 * @param string $algorithm The hashing algorithm. Default is the value of the `PASSWORD_BCRYPT` constant.2683 * @param string|int $algorithm The hashing algorithm. Default is the value of the `PASSWORD_BCRYPT` constant. 2682 2684 */ 2683 2685 $algorithm = apply_filters( 'wp_hash_password_algorithm', PASSWORD_BCRYPT ); … … 2689 2691 * filter. You must ensure that the options are appropriate for the algorithm in use. 2690 2692 * 2693 * The values of the algorithm constants are strings in PHP 7.4+ and integers in PHP 7.3 and earlier. 2694 * 2691 2695 * @since 6.8.0 2692 2696 * 2693 * @param array $optionsArray of options to pass to the password hashing functions.2694 * By default this is an empty array which means the default2695 * options will be used.2696 * @param string $algorithm The hashing algorithm in use.2697 * @param array $options Array of options to pass to the password hashing functions. 2698 * By default this is an empty array which means the default 2699 * options will be used. 2700 * @param string|int $algorithm The hashing algorithm in use. 2697 2701 */ 2698 2702 $options = apply_filters( 'wp_hash_password_options', array(), $algorithm );
Note: See TracChangeset
for help on using the changeset viewer.