将数组保存为多行

问题描述:

嘿,我该如何将数组保存到数据库中的多行?我正在使用MySQL数据库与PHP。将数组保存为多行

// GETTING ALL THE B NODE STUFFS AND PRINTING IT'S CONTENTS 
    $result = array(); 
    foreach($document->getElementsByTagName('b') as $node){ 
    $result[preg_replace('/:\s+$/','',$node->textContent)] = trim($node->nextSibling->textContent); 

    } 
    var_dump($result); 

下面是结果从我的阵列中拔出。

array 
'Choose by Subject Category or Module Code' => string '' (length=0) 
' 
Back to Home page' => string '' (length=0) 
'International' => string 'visiting students should consult the' (length=36) 
'Undergraduate' => string 'students should refer to the relevant section of the UCC' (length=56) 
'Postgraduate' => string 'students should refer to the relevant section of the UCC' (length=56) 
'Credit Weighting' => string '5' (length=1) 
'Teaching Period(s)' => string 'Teaching Period 1.' (length=18) 
'No. of Students' => string 'Min 15, Max 30.' (length=15) 
'Pre-requisite(s)' => string 'None' (length=4) 
'Co-requisite(s)' => string 'None' (length=4) 
'Teaching Methods' => string '1 x 4hr(s) Lectures; Other (Distance Education Module - Up to 146hrs Self Directed Study).' (length=90) 
'Module Co-ordinator' => string 'Dr Peter Cleary, Department of Accounting, Finance and Information Systems.' (length=75) 
'Lecturer(s)' => string 'Staff, Department of Accounting, Finance and Information Systems.' (length=65) 
'Module Objective' => string 'To examine the management uses of accounting information and to enhance students ability to exert effective managerial control.' (length=127) 
'Module Content' => string 'Topics include; the accounting information needs of management, costs and pricing; estimating costs; the identification of key performance indicators; budgeting for control; capital investment appraisal and implications for strategic planning and control.' (length=256) 
'Learning Outcomes' => string 'On successful completion of this module, students should be able to:' (length=68) 
'Assessment' => string 'Total Marks 100: Continuous Assessment 100 marks (Project/ Essay. Approximately 1500 words.).' (length=93) 
'Compulsory Elements' => string 'Continuous Assessment.' (length=22) 
'Penalties (for late submission of Course/Project Work etc.)' => string 'Where work is submitted up to and including 7 days late, 10% of the total marks available shall be deducted from the mark achieved. Where work is submitted up to and including 14 days late, 20% of the total marks available shall be deducted from the mark achieved. Work submitted 15 days late or more shall be assigned a mark of zero.' (length=336) 
'Pass Standard and any Special Requirements for Passing Module' => string '40%.' (length=4) 
'End of Year Written Examination Profile' => string 'No End of Year Written Examination.' (length=35) 
'Requirements for Supplemental Examination' => string 'Marks in passed element(s) of Continuous Assessment are carried forward, Failed element(s) of Continuous Assessment must be repeated (Resubmission of revised Continuous Assessment).' (length=181) 

我也尝试与NSERT查询每条语句里,但所有的内容保存在一个科拉姆来代替。

$array_data = implode("array_separator", $result); 
    foreach($result as $snode){ 
    $query = sprintf("INSERT INTO save_array (ModuleCode) VALUES ('%s')",mysql_real_escape_string($snode)); 
    mysql_query($query) or die('Error, insert query failed'); 
    echo $snode.<br />'; 
    } 
    echo '<br /><br /><br />'; 

任何帮助,将不胜感激。谢谢。

//============== LATEST INSERT QUERY================//  
$array_data = implode("array_separator", $result); 
foreach($result as $snode){ 
$query = sprintf("INSERT INTO save_array 
     (ModuleCode, 
     Homepage, 
     International, 
     Undergraduate, 
     Postgraduate, 
     CreditWeighting, 
     TeachingPeriod, 
     NoofStudents, 
     Prerequisite, 
     Corequisite, 
     TeachingMethods, 
     ModuleCoordinator, 
     Lecturer, 
     ModuleObjective, 
     ModuleContent, 
     LearningOutcomes, 
     Assessment, 
     CompulsoryElements, 
     Penalties, 
     PassStandard, 
     EndofYearWrittenExamination, 
     RequirementsforExamination) VALUES ('%s')",mysql_real_escape_string($snode)); 


foreach ($result as $key => $value) 
$query = $query . "$value"; 

echo '<br /><br />'; 
mysql_query($query) or die($query."<br/><br/>".mysql_error()); 
echo $snode. '<br />'; 
} 
echo '<br /><br /><br />'; 
+0

旁注:尝试使用[mysqli](http://tr.php.net/manual/en/intro.mysqli.php)函数(或PDO)而不是旧的[mysql](http://tr.php .net/manual/en/intro.mysql.php),它们很快就会被移除。 – Wh1T3h4Ck5

一个快速的回答是,通过foreach循环迭代,串联值放入一个INSERT查询(有关详细信息,请参阅http://dev.mysql.com/doc/refman/5.5/en/insert.html),并有foreach循环排除键“本科”,“国际” ,“Postdoc”以及任何长度为0的值。

您的问题似乎在INSERT查询中。尝试这样的:

$query = sprintf("INSERT INTO save_array (CreditWeighting, TeachingPeriod, NoofStudents, etc.)) VALUES ('%s')",mysql_real_escape_string($snode)); 

foreach ($result as $key => $value) 
    $query = $query . "$value"; 

并做一些调整,以获得查询字符串恰到好处。

+0

嘿谢谢你的答复。我的意思是多行是每一个值插入到不同的行,因为我会这样做的大量数据,并希望在数组中提取的所有数据分别保存。不知道我是否可以正确解释。 – user1444442

+0

看起来你只需要键值对表,但在这种情况下,你将失去很多信息。你有一个你正在使用的模式(数据库表定义)吗? –

+0

我将模式添加到上面编辑的代码中。请查看它。 – user1444442

您可以在数组的所有元素上循环并准备SQL INSERT INTO statment,并在执行此操作时执行它。

+0

我确实尝试过,但所有的内容都只保留在一列中。我有一个上面做过的示例代码。 – user1444442