$menu_to_count = wp_nav_menu(array(
'echo' => false,
'theme_location' => 'menu'
));
$menu_items = substr_count($menu_to_count,'class="menu-item ');
echo $menu_items;
This should work. Change the theme_location to what your menu is called.
Greetings,
Chiel Robben