SyndicatedPost::db_sanitize_post PHP Méthode

db_sanitize_post() public méthode

* SyndicatedPost::db_sanitize_post_check_encoding ()
public db_sanitize_post ( $out )
    function db_sanitize_post($out)
    {
        global $wp_db_version;
        $out = $this->db_sanitize_post_check_encoding($out);
        // < 3.6. Core API, including `wp_insert_post()`, expects
        // properly slashed data. If `wp_slash()` exists, then
        // this is after the big change-over in how data slashing
        // was handled.
        if (!function_exists('wp_slash')) {
            foreach ($out as $key => $value) {
                if (is_string($value)) {
                    $out[$key] = esc_sql($value);
                } else {
                    $out[$key] = $value;
                }
            }
            // For revisions [@23416,@23554), core API expects
            // unslashed data. Cf. <https://core.trac.wordpress.org/browser/trunk/wp-includes/post.php?rev=23416>
            // 	NOOP for those revisions.
            // In revisions @23554 to present, `wp_insert_post()`
            // expects slashed data once again.
            // Cf. <https://core.trac.wordpress.org/changeset/23554/trunk/wp-includes/post.php?contextall=1>
            // But at least now we can use the wp_slash API function to do that.
            // Hooray.
        } elseif ($wp_db_version >= 23524) {
            $out = wp_slash($out);
        }
        return $out;
    }