1

我插入到 flexform 字段max_item_to_display并尝试在我的SELECT query

$maxDisplayItem = $this->_getFlexformConfig('max_item_to_display');

$dbResource = $GLOBALS['TYPO3_DB']->exec_SELECTquery('*',                           // SELECT
                                                     'tx_mageconnect_products',     // FROM
                                                     'product_id IN ('.implode(',',$productIds).') 
                                                        AND store_view = \''.$store.'\'
                                                        AND hidden = \'0\' 
                                                        AND deleted = \'0\'
                                                        AND pid = \''.$pid.'\'',    // WHERE
                                                     'product_id',                  // GROUP BY
                                                     '',                            // ORDER BY
                                                     '$maxDisplayItem'              // LIMIT 
                                                    );

的值max_item_to_displaytt_content表中,但上面的代码不起作用。

有什么建议吗?

4

1 回答 1

1

当你想要变量值时不要使用单引号'$maxDisplayItem'

$maxDisplayItem不带引号使用。

http://php.net/manual/en/language.types.string.php

于 2013-07-16T12:01:39.273 回答