0

php 5.2.5 我编写了通过 courseid 从 MySQL 数据库获取模块的函数。

function getModules($courses, $mod) {
global $DB;
$result = array();
foreach ($courses as $value) {
    $value->mods = array();
    $value->count = 0;
    $temp = $DB->get_records_sql("
        SELECT q.*, cm.idnumber as cmidnumber, q.course as courseid
        FROM {modules} m
        JOIN {course_modules} cm ON m.id = cm.module
        JOIN {".$mod."} q ON cm.instance = q.id
        WHERE m.name = '".$mod."' AND cm.course = ?", array($value->id)); 
    foreach ($temp as $vS) {
        $value->mods[] = $vS;
        $value->count++;
    }
    $result[] = $value;
}  
return $result;
}

尝试获取某种类型的模块(to_debug 只是关于 var_dump 的一种包装器)

$learningScorm = getModules($learning, 'scorm');
to_debug($learningScorm);  // in debug I can see right values.
echo '<br><br><br>';
$learningLesson = getModules($learning, 'lesson');
to_debug($learningScorm);// in debug I see what value of $learningScorm is replaced by value of $learningLesson
$testingQuiz = getModules($testing, 'quiz');
$labAssignment = getModules($lab, 'assignment');

我不明白为什么会发生这种替换如果您对这种行为有一些提示,请给我。

如果我评论这些行

$value->mods = array();
$value->count = 0;

然后 $learningScorm 是对来自 $learningScorm 和 $learningLesson 的模块求和。看来...似乎 $courses 在函数 O_O 期间不是本地的。我不知道该怎么想了。

4

2 回答 2

0

getModules 是否返回引用?在这种情况下,两个变量可能指向相同的信息。可能发生的事情的简化示例:

var $global = 'x';

function getModules($a){
  global $global;
  $global = $a;
  return &$global;
}

// $a becomes 'foo', or actually a reference to $global, which now 
// has the value 'foo'
$a = getModules('foo'); 

// $b also is a reference to $global, which now has the value 'bar'. 
// Therefor, both $a and $b will show the value 'bar.
$b = getModules('bar');
于 2012-11-01T07:17:22.223 回答
0

$courses 是本地的,但 $courses 包含的对象是真实对象。通过改变 $value 的真正项目也在改变。

于 2012-11-02T08:10:01.440 回答