DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
đoạn Code Bóc Tách Danh Sách Socks (ip/port) Từ File Nội Dung SỠDụng Regex
đoạn code bóc tách danh sách socks (ip/port) từ file nội dung sỠdụng regex
<?php
$content = file_get_contents('myfile.htm');
//if(preg_match('/[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\:[0-9]{1,5}/', $content, $match)) {
if(preg_match('/^([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3}):([0-9]{1,5})$/', $content, $match)) {
foreach ($match as $result) {
echo $result . "<br>\n";
}
} else {
echo "Not an IP address!<br>\n";
}
?>






Comments
Snippets Manager replied on Sun, 2011/08/07 - 5:20pm