Changeset 53426 for trunk/src/wp-includes/functions.php
- Timestamp:
- 05/20/2022 05:36:23 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r53372 r53426 8423 8423 */ 8424 8424 function is_php_version_compatible( $required ) { 8425 return empty( $required ) || version_compare( phpversion(), $required, '>=' );8425 return empty( $required ) || version_compare( PHP_VERSION, $required, '>=' ); 8426 8426 } 8427 8427
Note: See TracChangeset
for help on using the changeset viewer.