标签: php include
我需要在php中传递参数to include函数,所以假设有这个:
<?php include('template.php'); ?>
在template.php我希望传递参数如下:
template.php
$param=... $param1=.. <?php include('template.php',$param,$param1); ?>
我不知道这是不是正确的方法。有人可以帮帮我吗?