1

我有一个关于 PHP/MYSQL 的问题。我有一个函数,它获取 MYSQL 表中的颜色列表并将它们呈现到许多 HTML 表中。想法是,除非客户选择某个选项,否则大部分内容将被隐藏。当用户将鼠标放在颜色上时,它会加载更详细的图片。它工作正常,但是在脚本停止执行一定数量的字符后,这里是代码:

要求:

$sql = 'SELECT *, GROUP_CONCAT(description ORDER BY i.model_correspondance ASC) AS concat,     GROUP_CONCAT(model_correspondance ORDER BY i.model_correspondance ASC) AS modell, GROUP_CONCAT(element) AS elem, GROUP_CONCAT(coordinates ORDER BY i.model_correspondance ASC) AS coord FROM design_tool_items AS i WHERE i.model='.$shoe.' GROUP BY i.element, i.category, i.subelement ORDER BY i.id ASC';

和 PHP 的其余部分:

        if ($results = Db::getInstance()->ExecuteS($sql)) {
            foreach ($results as $row) {

                if($row['subelement']=='') {
                    if(isset($i)) $code .= '</div>';
                        $code .= '<div class="'.$display.' color_holder" rel="'.$row['style'].'" id="div'.$row['subelement'].'.'.$row['element'].'">';
                        $i=1;
                } else {
                    $code .= '</div>';
                    $code .= '<div class="no color_holder" rel="'.$row['style'].'" id="div'.$row['subelement'].'.'.$row['element'].'">';
                }

                $sentinel = $row['element'];
                $code .= '<div style="text-align:left;padding:10px">'.$row['category'].'</div>';
                $concat = explode(',', $row['concat']);
                $coordinate = explode(',', $row['coord']);
                $model_corres = explode(',', $row['modell']);

                foreach($concat as $item => $corres) {

                    if(($i==1)&&(array_search($sentinel, $array_elements)===false)) { 
                        $array_elements[] = $sentinel;
                        $select = 'selected';
                    } else $select = '';

                    $coord = explode('#', $coordinate[$item]);

                    $clean_array = array($row['category'], $corres);
                    foreach($clean_array as &$text) {
                        $text = str_replace(' ', '_', $text);
                        $text = strtolower($text);  
                    }

                    $code .= '<div style="width:60px;padding-left:10px;margin:auto;float:left;">';
                    $code .= '<div onmouseover="Tip(\'<div><img style=width:200px;height:200px; src='.$val.'folded_images/'.$clean_array[0].'/'.$clean_array[1].'.jpg alt=Image:'.$corres.' /><br>'.$corres.'</div>\')" onmouseout="UnTip()" rel="'.$row['style'].'" denom="'.$row['subelement'].'.'.$sentinel.$model_corres[$item].'" class="color '.$select.'" style="background-position:'.$coord[0].'px '.$coord[1].'px;"></div>';
                    $code .= '</div>';
                    if(is_int($i/3)) $code .= '<div style="clear:both;"></div>';
                    $i++;
                }
                $code .= '<div style="clear:both;"></div>';
            }
        }

        return $code;

在第 100 行,脚本在中间停止工作,只显示描述的前三个字符。如果我减少前面描述的长度,它会进一步工作,所以问题来自数组 $concat。

你认为有大小限制吗(我知道 PHP 5.2 中的 128Mb 和 8Mb 之前,但是网站运行 PHP 5.2.3,我认为我离 128Mb 还很远)?

抱歉话题太长了,先谢谢大家关注这个。

祝你有美好的一天!

4

2 回答 2

1

其原因在于使用GROUP_CONCAT.

一个可能有用的有用链接。关联

于 2013-03-22T02:48:21.427 回答
0

可能与最大执行时间和/或内存限制有关。值得单独调整每个(然后,如果有疑问,一起调整),看看你是否得到了有利的结果。您可能还希望为 PHP 启用更好的调试日志记录

于 2013-03-22T02:48:48.380 回答