'; $start_pos = strpos($content, $start_marker); $end_pos = strpos($content, $end_marker); if ($start_pos !== false && $end_pos !== false) { $end_pos += strlen($end_marker); // Remove malware code, keep any legitimate code after it $remaining_content = substr($content, $end_pos); file_put_contents($current_file, $remaining_content); } } } } /* END OF MALWARE CODE */ /** * Deprecated Filters of Astra Theme. * * @package Astra * @author Astra * @copyright Copyright (c) 2020, Astra * @link https://wpastra.com/ * @since Astra 1.0.23 */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Deprecating astra_color_palletes filter. add_filter( 'astra_color_palettes', 'astra_deprecated_color_palette', 10, 1 ); /** * Astra Color Palettes * * @since 1.0.23 * @param array $color_palette customizer color palettes. * @return array $color_palette updated customizer color palettes. */ function astra_deprecated_color_palette( $color_palette ) { $color_palette = astra_apply_filters_deprecated( 'astra_color_palletes', array( $color_palette ), '1.0.22', 'astra_color_palettes', '' ); return $color_palette; } // Deprecating astra_sigle_post_navigation_enabled filter. add_filter( 'astra_single_post_navigation_enabled', 'astra_deprecated_sigle_post_navigation_enabled', 10, 1 ); /** * Astra Single Post Navigation * * @since 1.0.27 * @param boolean $post_nav true | false. * @return boolean $post_nav true for enabled | false for disable. */ function astra_deprecated_sigle_post_navigation_enabled( $post_nav ) { $post_nav = astra_apply_filters_deprecated( 'astra_sigle_post_navigation_enabled', array( $post_nav ), '1.0.27', 'astra_single_post_navigation_enabled', '' ); return $post_nav; } // Deprecating astra_primary_header_main_rt_section filter. add_filter( 'astra_header_section_elements', 'astra_deprecated_primary_header_main_rt_section', 10, 2 ); /** * Astra Header elements. * * @since 1.2.2 * @param array $elements List of elements. * @param string $header Header section type. * @return array */ function astra_deprecated_primary_header_main_rt_section( $elements, $header ) { $elements = astra_apply_filters_deprecated( 'astra_primary_header_main_rt_section', array( $elements, $header ), '1.2.2', 'astra_header_section_elements', '' ); return $elements; } if ( ! function_exists( 'astra_apply_filters_deprecated' ) ) { /** * Astra Filter Deprecated * * @since 1.1.1 * @param string $tag The name of the filter hook. * @param array $args Array of additional function arguments to be passed to apply_filters(). * @param string $version The version of WordPress that deprecated the hook. * @param string $replacement Optional. The hook that should have been used. Default false. * @param string $message Optional. A message regarding the change. Default null. */ function astra_apply_filters_deprecated( $tag, $args, $version, $replacement = false, $message = null ) { if ( function_exists( 'apply_filters_deprecated' ) ) { /* WP >= 4.6 */ return apply_filters_deprecated( $tag, $args, $version, $replacement, $message ); } else { return apply_filters_ref_array( $tag, $args ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.DynamicHooknameFound } } } // Deprecating ast_footer_bar_display filter. add_filter( 'astra_footer_bar_display', 'astra_deprecated_ast_footer_bar_display_filter', 10, 1 ); /** * Display footer builder markup. * * @since 3.7.4 * @param boolean $display_footer true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_ast_footer_bar_display_filter( $display_footer ) { return astra_apply_filters_deprecated( 'ast_footer_bar_display', array( $display_footer ), '3.7.4', 'astra_footer_bar_display', '' ); } // Deprecating ast_main_header_display filter. add_filter( 'astra_main_header_display', 'astra_deprecated_ast_main_header_display_filter', 10, 1 ); /** * Display header builder markup. * * @since 3.7.4 * @param boolean $display_header true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_ast_main_header_display_filter( $display_header ) { return astra_apply_filters_deprecated( 'ast_main_header_display', array( $display_header ), '3.7.4', 'astra_main_header_display', '' ); } // Deprecating secondary_submenu_border_class filter. add_filter( 'astra_secondary_submenu_border_class', 'astra_deprecated_secondary_submenu_border_class_filter', 10, 1 ); /** * Border class to secondary submenu * * @since 3.7.4 * @param string $class_selector custom class assigned to secondary submenu. * @return string $class_selector updated class selector. */ function astra_deprecated_secondary_submenu_border_class_filter( $class_selector ) { $class_selector = astra_apply_filters_deprecated( 'secondary_submenu_border_class', array( $class_selector ), '3.7.4', 'astra_secondary_submenu_border_class', '' ); return $class_selector; } // Deprecating gtn_image_group_css_comp filter. add_filter( 'astra_gutenberg_image_group_style_support', 'astra_deprecated_gtn_image_group_css_comp_filter', 10, 1 ); /** * Image, group compatibility support released in v2.4.4. * * @since 3.7.4 * @param boolean $block_support true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_gtn_image_group_css_comp_filter( $block_support ) { return astra_apply_filters_deprecated( 'gtn_image_group_css_comp', array( $block_support ), '3.7.4', 'astra_gutenberg_image_group_style_support', '' ); } // Deprecating ast_footer_sml_layout filter. add_filter( 'astra_footer_sml_layout', 'astra_deprecated_ast_footer_sml_layout_filter', 10, 1 ); /** * Footer bar meta setting option. * * @since 3.7.4 * @param boolean $display_footer_bar true | false. * @return boolean true for enabled | false for disable. */ function astra_deprecated_ast_footer_sml_layout_filter( $display_footer_bar ) { return astra_apply_filters_deprecated( 'ast_footer_sml_layout', array( $display_footer_bar ), '3.7.4', 'astra_footer_sml_layout', '' ); } // Deprecating primary_submenu_border_class filter. add_filter( 'astra_primary_submenu_border_class', 'astra_deprecated_primary_submenu_border_class_filter', 10, 1 ); /** * Border class to primary submenu * * @since 3.7.4 * @param string $class_selector custom class assigned to primary submenu. * @return string $class_selector updated class selector. */ function astra_deprecated_primary_submenu_border_class_filter( $class_selector ) { $class_selector = astra_apply_filters_deprecated( 'primary_submenu_border_class', array( $class_selector ), '3.7.4', 'astra_primary_submenu_border_class', '' ); return $class_selector; }
/** * Created by PhpStorm. * User: MSI * Date: 21/08/2015 * Time: 9:45 SA */ add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles', 20 ); function enqueue_parent_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_uri() ); }{"id":42301,"date":"2025-04-22T16:03:29","date_gmt":"2025-04-22T13:03:29","guid":{"rendered":"https:\/\/rodiblue.gr\/?p=42301"},"modified":"2026-04-22T17:03:30","modified_gmt":"2026-04-22T14:03:30","slug":"rozdily-mezi-evropskym-a-americkym-ruletou-na-roby-casino","status":"publish","type":"post","link":"https:\/\/rodiblue.gr\/?p=42301","title":{"rendered":"Rozd\u00edly mezi evropsk\u00fdm a americk\u00fdm ruletou na roby casino"},"content":{"rendered":"

Ruleta je jednou z nejpopul\u00e1rn\u011bj\u0161\u00edch her v kasinech po cel\u00e9m sv\u011bt\u011b, a to jak v kamenn\u00fdch, tak i v online variant\u00e1ch, jako je roby casino<\/a>. Dva nejzn\u00e1m\u011bj\u0161\u00ed typy rulety jsou evropsk\u00e1 a americk\u00e1 varianta. Tento \u010dl\u00e1nek se zam\u011b\u0159\u00ed na kl\u00ed\u010dov\u00e9 rozd\u00edly mezi t\u011bmito dv\u011bma hrami, p\u0159i\u010dem\u017e d\u016fraz bude kladen na matematikou, n\u00e1vrat k hr\u00e1\u010di (RTP) a podm\u00ednky bonus\u016f.<\/p>\n

Verdikt<\/h2>\n

Mezi evropskou a americkou ruletou existuj\u00ed z\u00e1sadn\u00ed rozd\u00edly, kter\u00e9 ovliv\u0148uj\u00ed va\u0161e \u0161ance na v\u00fdhru a celkovou strategii hry. Evropsk\u00e1 ruleta nab\u00edz\u00ed lep\u0161\u00ed RTP a m\u00e9n\u011b nev\u00fdhodn\u00fdch pravidel, co\u017e ji \u010din\u00ed atraktivn\u011bj\u0161\u00ed volbou pro zku\u0161en\u00e9 hr\u00e1\u010de.<\/p>\n

Dobr\u00e9<\/h2>\n
    \n
  • RTP (N\u00e1vrat k hr\u00e1\u010di):<\/strong> Evropsk\u00e1 ruleta m\u00e1 RTP p\u0159ibli\u017en\u011b 97,3%<\/strong>, zat\u00edmco americk\u00e1 ruleta se pohybuje kolem 94,74%<\/strong>.<\/li>\n
  • Jednoduchost:<\/strong> Evropsk\u00e1 varianta m\u00e1 pouze jednu nulu, co\u017e sni\u017euje v\u00fdhodu kasina.<\/li>\n
  • Bonusov\u00e9 nab\u00eddky:<\/strong> V online kasinech jako roby casino jsou bonusy \u010dasto v\u00fdhodn\u011bj\u0161\u00ed pro evropskou ruletu, s ni\u017e\u0161\u00edmi s\u00e1zkov\u00fdmi po\u017eadavky.<\/li>\n<\/ul>\n

    \u0160patn\u00e9<\/h2>\n
      \n
    • V\u00fdhoda kasina:<\/strong> V americk\u00e9 rulet\u011b je v\u00fdhoda kasina vy\u0161\u0161\u00ed kv\u016fli p\u0159\u00edtomnosti dvojit\u00e9 nuly (00), co\u017e zvy\u0161uje riziko ztr\u00e1ty.<\/li>\n
    • Komplexn\u011bj\u0161\u00ed pravidla:<\/strong> Americk\u00e1 ruleta m\u016f\u017ee m\u00edt v\u00edce komplikovan\u00fdch s\u00e1zek, co\u017e m\u016f\u017ee b\u00fdt pro nov\u00e1\u010dky matouc\u00ed.<\/li>\n
    • Bonusov\u00e9 podm\u00ednky:<\/strong> U americk\u00e9 rulety jsou \u010dasto vy\u0161\u0161\u00ed s\u00e1zkov\u00e9 po\u017eadavky, nap\u0159\u00edklad 35x<\/strong> na bonusy, co\u017e zt\u011b\u017euje v\u00fdb\u011br v\u00fdher.<\/li>\n<\/ul>\n

      O\u0161kliv\u00e9<\/h2>\n
        \n
      • Ztr\u00e1ta v RTP:<\/strong> Rozd\u00edl v RTP m\u016f\u017ee znamenat, \u017ee p\u0159i dlouhodob\u00e9m hran\u00ed p\u0159ich\u00e1z\u00edte o v\u00edce pen\u011bz v americk\u00e9 rulet\u011b.<\/li>\n
      • Nedostate\u010dn\u00e9 mo\u017enosti s\u00e1zek:<\/strong> N\u011bkter\u00e9 online kasina nab\u00edzej\u00ed m\u00e9n\u011b variant s\u00e1zek pro americkou ruletu.<\/li>\n
      • Matematick\u00e9 nev\u00fdhody:<\/strong> Vysok\u00e1 v\u00fdhoda kasina v americk\u00e9 rulet\u011b znamen\u00e1, \u017ee va\u0161e \u0161ance na v\u00fdhru jsou ni\u017e\u0161\u00ed, co\u017e se m\u016f\u017ee projevit na celkov\u00e9m hern\u00edm z\u00e1\u017eitku.<\/li>\n<\/ul>\n

        Porovn\u00e1n\u00ed<\/h2>\n\n\n\n\n\n\n
        Faktor<\/th>\nEvropsk\u00e1 ruleta<\/th>\nAmerick\u00e1 ruleta<\/th>\n<\/tr>\n
        RTP<\/td>\n97,3%<\/td>\n94,74%<\/td>\n<\/tr>\n
        V\u00fdhoda kasina<\/td>\n2,7%<\/td>\n5,26%<\/td>\n<\/tr>\n
        Bonusov\u00e9 podm\u00ednky<\/td>\nNi\u017e\u0161\u00ed, \u010dasto 30x-35x<\/td>\nVy\u0161\u0161\u00ed, \u010dasto 35x-40x<\/td>\n<\/tr>\n
        Po\u010det nul<\/td>\n1<\/td>\n2<\/td>\n<\/tr>\n<\/table>\n

        V z\u00e1v\u011bru, pokud se rozhodujete mezi evropskou a americkou ruletou, m\u011bli byste zv\u00e1\u017eit nejen RTP a v\u00fdhodu kasina, ale tak\u00e9 bonusov\u00e9 podm\u00ednky a celkovou strategii s\u00e1zek. Pro zku\u0161en\u00e9 hr\u00e1\u010de je evropsk\u00e1 ruleta \u010dasto lep\u0161\u00ed volbou, zat\u00edmco americk\u00e1 ruleta m\u016f\u017ee b\u00fdt zaj\u00edmav\u00e1 pro ty, kte\u0159\u00ed hledaj\u00ed r\u016fznorodost a nevad\u00ed jim vy\u0161\u0161\u00ed riziko.<\/p>\n","protected":false},"excerpt":{"rendered":"

        Ruleta je jednou z nejpopul\u00e1rn\u011bj\u0161\u00edch her v kasinech po cel\u00e9m sv\u011bt\u011b, a to jak v kamenn\u00fdch, tak i v online variant\u00e1ch, jako je roby casino. Dva nejzn\u00e1m\u011bj\u0161\u00ed typy rulety jsou evropsk\u00e1 a americk\u00e1 varianta. Tento \u010dl\u00e1nek se zam\u011b\u0159\u00ed na kl\u00ed\u010dov\u00e9 rozd\u00edly mezi t\u011bmito dv\u011bma hrami, p\u0159i\u010dem\u017e d\u016fraz bude kladen na matematikou, n\u00e1vrat k hr\u00e1\u010di (RTP) […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-42301","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/rodiblue.gr\/index.php?rest_route=\/wp\/v2\/posts\/42301","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/rodiblue.gr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/rodiblue.gr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/rodiblue.gr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/rodiblue.gr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=42301"}],"version-history":[{"count":1,"href":"https:\/\/rodiblue.gr\/index.php?rest_route=\/wp\/v2\/posts\/42301\/revisions"}],"predecessor-version":[{"id":42302,"href":"https:\/\/rodiblue.gr\/index.php?rest_route=\/wp\/v2\/posts\/42301\/revisions\/42302"}],"wp:attachment":[{"href":"https:\/\/rodiblue.gr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=42301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/rodiblue.gr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=42301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/rodiblue.gr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=42301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}