dongtiao2105 2016-07-27 09:39
浏览 39
已采纳

如何通过短代码包含php时发送变量?

I am including a PHP file on a WordPress page like this: [include filepath='/my_file.php'] The part of the functions.php that I changed to make it possible looks like this:

function include_file($atts) {
    extract(shortcode_atts(array('filepath' => NULL), $atts));
    if ($filepath!='NULL' && file_exists( trailingslashit( get_stylesheet_directory() ) . $filepath)){
    ob_start();
    include(get_stylesheet_directory() . '/' . $filepath);
    $content = ob_get_clean();
    return $content;
    }
}

However, I want to be able to send a variable with the include. It is not possible like this: [include filepath='/my_file.php?var=1'], but maybe you get the idea.

Right now, I created a lot of different .php files which have the variables in them and included them like this: [include filepath='/my_file1.php'][include filepath='/my_file2.php'] This is really annoying to deal with and if I change something in the original php, every other one has to be changed. Is there a better way? :)

  • 写回答

1条回答 默认 最新

  • douya6606 2016-07-27 09:45
    关注

    You can define a variable before an include statement and that will be visible to the file you are including.

    Simple example (I want to pass $foo into my file):

    inc.php:

    echo "inside inc.php '" . $foo . "' << ...
    ";
    

    test.php:

    function hello()
    {
        $foo = 9999;
        include('inc.php');
    }
    
    hello();
    

    which will output:

    # php test.php
    inside inc.php '9999' << ...
    

    hope that helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 连续两帧图像高速减法
  • ¥15 组策略中的计算机配置策略无法下发
  • ¥15 如何绘制动力学系统的相图
  • ¥15 对接wps接口实现获取元数据
  • ¥20 给自己本科IT专业毕业的妹m找个实习工作
  • ¥15 用友U8:向一个无法连接的网络尝试了一个套接字操作,如何解决?
  • ¥30 我的代码按理说完成了模型的搭建、训练、验证测试等工作(标签-网络|关键词-变化检测)
  • ¥50 mac mini外接显示器 画质字体模糊
  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写