好的怪问题。
表包含多个字段。一些数据类型为int(5),其余数据类型为int(11)
所以让我们排好......
id =>int(5)
var1 =>int(11)
var2 =>int(11)
var3 =>int(11)
var4 =>int(11)
var5 =>int(5)
var6 =>int(11)
var7 =>int(11)
var8 =>int(11)
如何计算PHP BETWEEN id(int(5))和var(int(5))中的字段 我需要在使用php之间返回字段中的值...但我卡住了。糟糕的桌子设计并没有帮助...但我坚持下去。
完整的场景是我需要创建一个if语句,它输出int(5)字段的名称和数据,如果它和下一个int(5)之间的任何字段都包含数据
抱歉......丑陋,我知道!!!如果到目前为止运行
$sql2 = 'SHOW COLUMNS from services2';
$result2 = getDBResults($sql2, $level, $testing);
$total = count($result2);
$i=2;
while ($i<($total-1))
{
$data = $result2[$i]['Field'];
if ($result2[$i][1]=='int(5)')
{
$html .= '<h2>'.preg_replace('/(?<!\ )[A-Z]/', ' $0', $result2[$i]['Field']).'</h2>';
}
else
{
];
// "$result - This is a seperate query run previously to get the row
if ($result[0][$data] == 1)
{
$html .= '<p>'.preg_replace('/(?<!\ )[A-Z]/', ' $0', $data).'</p>';
}
}
$i++;
}
答案 0 :(得分:0)
我没有机会对它进行实际测试,所以如果你需要稍微调整它以平滑任何粗糙边缘,请不要打扰我。
但它是一个相当标准的,如果不是完全简单的,处理列名称的过程会在循环中产生数组,只记住变量中的最后一个int(5)列名,这样你可以使用它,当且仅当,在查看下一个int(5)列类型之前,您已在任何int(11)列类型中找到了一些数据。
现在我明白为什么你难以解释你想要的东西,我在描述解决方案时遇到同样的麻烦。
无论如何,看看这段代码,看看它是否对你有任何意义。
$sql2 = 'SHOW COLUMNS from services2';
$columns = getDBResults($sql2, $level, $testing);
$total = count($columns);
$print_column = null;
$found_data = false;
foreach ( $columns as $idx => $column ) {
// skip first 2 columns
if ($idx < 3 ) { continue; }
// first time thru loop so remember the first int5 column name we saw
if ( $column['Type'] == 'int(5)' && empty($print_column) ) {
$print_column = $column['Field'];
$found_data = false;
continue;
}
// found the next int5 column, do we need to print anything
if ( $column['Type'] == 'int(5)' && $found_data ) {
// This is where you would do any output creation,
// I just kept it simple.
echo $result[0][$print_column];
// reset state and the next field that might be printed.
$found_data = false;
$print_column = $column['Field'];
continue;
}
// This may not need to be an if, but just in case you have other field types
// that you are not interested in processing I made it an if.
if ( $column['Type'] == 'int(11)' && ! empty($result[0][$column['Field']]) ) {
$found_data = true;
}
} // endforeach