diff options
Diffstat (limited to 'phpBB/develop/regex_idn.php')
| -rw-r--r-- | phpBB/develop/regex_idn.php | 41 | 
1 files changed, 1 insertions, 40 deletions
| diff --git a/phpBB/develop/regex_idn.php b/phpBB/develop/regex_idn.php index 30373f8de3..24d1eb9196 100644 --- a/phpBB/develop/regex_idn.php +++ b/phpBB/develop/regex_idn.php @@ -8,45 +8,6 @@  //  die("Please read the first lines of this script for instructions on how to enable it"); -// IP regular expressions - -$dec_octet = '(?:\d{1,2}|1\d\d|2[0-4]\d|25[0-5])'; -$h16 = '[\dA-F]{1,4}'; -$ipv4 = "(?:$dec_octet\.){3}$dec_octet"; -$ls32 = "(?:$h16:$h16|$ipv4)"; - -$ipv6_construct = array( -	array(false,	'',		'{6}',	$ls32), -	array(false,	'::',	'{0,5}', "(?:$h16(?::$h16)?|$ipv4)"), -	array('',		':',	'{4}',	$ls32), -	array('{1,2}',	':',	'{3}',	$ls32), -	array('{1,3}',	':',	'{2}',	$ls32), -	array('{1,4}',	':',	'',		$ls32), -	array('{1,5}',	':',	false,	$ls32), -	array('{1,6}',	':',	false,	$h16), -	array('{1,7}',	':',	false,	''), -	array(false, '::', false, '') -); - -$ipv6 = '(?:'; -foreach ($ipv6_construct as $ip_type) -{ -	$ipv6 .= '(?:'; -	if ($ip_type[0] !== false) -	{ -		$ipv6 .= "(?:$h16:)" . $ip_type[0]; -	} -	$ipv6 .= $ip_type[1]; -	if ($ip_type[2] !== false) -	{ -		$ipv6 .= "(?:$h16:)" . $ip_type[2]; -	} -	$ipv6 .= $ip_type[3] . ')|'; -} -$ipv6 = substr($ipv6, 0, -1) . ')'; - -echo 'IPv4: ' . $ipv4 . "<br /><br />\n\nIPv6: " . $ipv6 . "<br /><br />\n\n"; -  // URL regular expressions  /* IDN2008 characters derivation @@ -72,7 +33,7 @@ $no_hangul = '\x{1100}-\x{115F}\x{A960}-\x{A97C}\x{1160}-\x{11A7}\x{D7B0}-\x{D7C  */  $no_cdm = '\x{20D0}-\x{20FF}';						// \p{block=Combining_Diacritical_Marks_For_Symbols}  $no_musical = '\x{1D100}-\x{1D1FF}';					// \p{block=Musical_Symbols} -$no_ancient_greek_musical = '\x{1D200}-\x{1D24F}';	// \p{block=Ancient_Greek_Musical_Notation}	 +$no_ancient_greek_musical = '\x{1D200}-\x{1D24F}';	// \p{block=Ancient_Greek_Musical_Notation}  /* Remove certain exceptions:  ** U+0640 ARABIC TATWEEL  ** U+07FA NKO LAJANYALAN | 
