Created
December 8, 2013 10:32
-
-
Save naoa/7855632 to your computer and use it in GitHub Desktop.
This script has the feature that extract English wikipedia's category has only alphabets, digits, and spaces. %php category_enals.php<database> <output_file>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$db = "127.0.0.1"; | |
$db_name = $argv[1]; | |
$table = "category"; | |
$username = "mysql"; | |
$password = ""; | |
$output_file = $argv[2]; | |
$con = mysql_connect($db, $username, $password); | |
if (!$con) { | |
exit('Database connection error'); | |
} | |
$result = mysql_select_db($db_name, $con); | |
if (!$result) { | |
exit('Database select error'); | |
} | |
$fw = fopen($output_file, 'a+'); | |
$startTime = microtime(true); | |
$query = "SELECT cat_title FROM $table;"; | |
$result = mysql_query($query, $con); | |
if(!$result){ | |
echo "SELECT ERROR aborted" . "\n"; | |
$con = mysql_close($con); | |
if (!$con) { | |
echo 'Database close error'; | |
} | |
fclose($fw); | |
exit; | |
} | |
while ($item = mysql_fetch_array($result)){ | |
$title = $item['cat_title']; | |
mb_regex_encoding("UTF-8"); | |
if (preg_match("/^[a-zA-Z0-9 ]+$/u",$title)) { | |
$title = $title; | |
fwrite($fw,$title . "\n"); | |
} | |
} | |
$endTime = microtime(true); | |
$elapsedTime = $endTime - $startTime; | |
$con = mysql_close($con); | |
if (!$con) { | |
exit('Database close error'); | |
} | |
fclose($fw); | |
echo "Done.\n"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment