首頁  >  問答  >  主體

從另一個檔案的函數中提取php檔案中的變數

我在根目錄下有一個php文件,我想要從另一個php檔案的一個函數中檢索一個變數。我需要它來進行SQL查詢。

我的php檔案在根目錄下

<?php
    require dirname(__FILE__) . '/config/config.inc.php';
    require 'modules/pricefrom/pricefrom.php';

    $lowestPrice = Db::getInstance()->getValue('
            SELECT MIN(`price`)
            FROM `' . _DB_PREFIX_ . 'product_attribute`
            WHERE `id_product` = ' . (int)$id_product
    );

我需要從另一個檔案中取得$id_product,該檔案是必需的,並且位於一個函數中,並使用該函數的參數。

<?php
    ...
    public function hookDisplayPriceBlock($param) {
            $id_product = $param['id_product'];
            $id_product_attribute = $param['id_product_attribute'];
            $product = new Product();
            ...

我知道有一個簡單的方法可以實現,但我已經搜尋了幾個小時,找不到,你們能幫幫我嗎?

P粉198670603P粉198670603431 天前538

全部回覆(1)我來回復

  • P粉256487077

    P粉2564870772023-09-08 11:44:50

    在根目錄使用

    require_once('<path to file2.php>');
    $id_product = hookDisplayPriceBlock(<params>);
    .....

    檔2

    public function hookDisplayPriceBlock($param) {
        ...
        return $id_product;
    }

    回覆
    0
  • 取消回覆