Changeset 53886
- Timestamp:
- 08/12/2022 09:24:23 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r53878 r53886 658 658 * Check value to find if it was serialized. 659 659 * 660 * If $data is not a nstring, then returned value will always be false.660 * If $data is not a string, then returned value will always be false. 661 661 * Serialized data is always a string. 662 662 * 663 663 * @since 2.0.5 664 * @since 6.1.0 Added Enum support. 664 665 * 665 666 * @param string $data Value to check to see if was serialized. … … 715 716 case 'a': 716 717 case 'O': 718 case 'E': 717 719 return (bool) preg_match( "/^{$token}:[0-9]+:/s", $data ); 718 720 case 'b':
Note: See TracChangeset
for help on using the changeset viewer.