예제 #1
0
파일: db.call.php 프로젝트: nopticon/npt
function _rowset_foreach($rows, $style, $prefix = '')
{
    $i = 0;
    foreach ($rows as $row) {
        if (!$i) {
            _style($style);
        }
        _rowset_style_row($row, $style, $prefix);
        $i++;
    }
    return;
}
예제 #2
0
파일: core.php 프로젝트: nopticon/tts
function _rowset_foreach($rows, $style, $prefix = '', $comp_orig = false, $comp_dest = false)
{
    $i = 0;
    foreach ($rows as $row) {
        if (!$i) {
            _style($style);
        }
        _rowset_style_row($row, $style, $prefix, $comp_orig, $comp_dest);
        $i++;
    }
    return;
}