标签: php
我正在尝试这样做......是否可能
<?php include("includes/sidebar.php?show_hide_tab=true"); ?>
因为有些页面在侧栏中不需要一些逻辑
答案 0 :(得分:6)
就这样做
<?php $show_hide_tab = true; include('includes/sidebar.php'); ?>
$show_hide_tab变量的范围将落入包含脚本。
$show_hide_tab