Ticket #18736: meta-regexp.diff
File meta-regexp.diff, 1.0 KB (added by , 12 years ago) |
---|
-
wp-includes/meta.php
614 614 * - 'key' string The meta key 615 615 * - 'value' string|array The meta value 616 616 * - 'compare' (optional) string How to compare the key to the value. 617 * Possible values: '=', '!=', '>', '>=', '<', '<=', 'LIKE', 'NOT LIKE', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN' .617 * Possible values: '=', '!=', '>', '>=', '<', '<=', 'LIKE', 'NOT LIKE', 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN', 'REGEXP', 'NOT REGEXP', 'RLIKE'. 618 618 * Default: '=' 619 619 * - 'type' string (optional) The type of the value. 620 620 * Possible values: 'NUMERIC', 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED'. … … 732 732 'LIKE', 'NOT LIKE', 733 733 'IN', 'NOT IN', 734 734 'BETWEEN', 'NOT BETWEEN', 735 'NOT EXISTS' 735 'NOT EXISTS', 736 'REGEXP', 'NOT REGEXP', 'RLIKE' 736 737 ) ) ) 737 738 $meta_compare = '='; 738 739