我插入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_display
的值在tt_content
表中,但上面的代码不起作用。
有什么建议吗?
答案 0 :(得分:1)
如果想要在'$maxDisplayItem'
使用$maxDisplayItem
不加引号。