, , PHP- ( ), gedit , .
, : , ( , , )
"tables" :
<?php
$hugeFileName="test.sql";
$text=file_get_contents($hugeFileName);
$arr=explode("-- Table structure for table", $text);
$first=true;
if(!is_dir("tables")){
mkdir("tables");
}
foreach($arr as $table){
if($first){
$first=false;
continue;
}
list($tableName, $tableCreate, $nothing, $nothing, $tableData)=explode("--", $table);
$tableName=trim($tableName, "\n");
$tableName=trim($tableName, " ");
$tableName=trim($tableName, "`");
$tableName=trim($tableName, "`\r");
file_put_contents("tables/".$tableName.".sql", $tableCreate.$tableData);
}?>