如何将这两行代码合并为一行

时间:2014-03-13 14:29:29

标签: php function

您好我有两行代码在一个单独的页面上调用两个函数我只是想知道我是否可以将它们放在一起所以它们同时运行,此时只有一个在php函数运行时被调用。我代码如下。

 if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) 
    {
        echo "File is valid, and was successfully uploaded.\n"; 
        include "select.class.php";
these are the lines I want to combine >>$opt->addNewMediaCrossRef($Job, $Career, $Uniq_id); 
these are the lines I want to combine >>$opt->addNewMediaRecord($Subject, $Section, $Principle, $Title, $Blurb, $Uniq_id, $Job, $Career);
    }

在页面上,我想从

调用函数
class SelectList
{

我的所有功能都在这里

}
$opt = new SelectList();
?>

任何想法都会非常感激

1 个答案:

答案 0 :(得分:1)

使用模板设计模式,您将能够立即调用来自不同类的所有方法。