ציטוט:
נכתב במקור על ידי RS324
לדוגמא :
PHP קוד:
function print_template($templatename) { echo "templatename is $templatename"; print file_get_contents("$templatename.tpl"); }
eval("print_template('mytemplate')");
|
מה ההבדל בין זה ל-
PHP קוד:
function print_template($templatename)
{
echo "templatename is $templatename";
print file_get_contents("$templatename.tpl");
}
print_template('mytemplate');
?