You can do a workaround as follows:
$ru_month = array( '', '', '', '', '', '', '', '', '', '', '', '' ); $en_month = array( 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ); print_r( date_parse_from_format( "F j Y", str_replace( $ru_month, $en_month, $date ) ) );
PS: as others claim, there is a direct method, here is a duplicate of your question.
source share