<?php
error_reporting(-1);

$input = "8-495-1-234-567";
$regexp = '/^\\+?8?7?\';
$matches = array();

if(preg_match($regexp, $input, $matches)){
	echo "Все верно.\n";
	var_dump($matches);
}else{
	echo "Ошибка";
}