Jump to content

getting the remainder


tigomark

Recommended Posts

Hello,

 

I am trying to get the remainder of a field from the modulus of 5 to populate additional table headers.

 

if((count($val->type) - count($val->type != "N/A")) % 5){
    $reporthtml .= sprintf("<td align=\"center\" nowrap=\"nowrap\"> </td>");
}

 

In the implimentation

there are 8 fields

6 are N/A and 2 are good so I have 2 populated headers but I need to populate the other 3 with the empty space. However I could have 5 values so I am just trying to get the current amount and then fill the remaining with empty space.

 

Any help would be great.

Link to comment
https://forums.phpfreaks.com/topic/91176-getting-the-remainder/
Share on other sites

I think that this might make more sense if I posted the whole code chunk (or maybe not since It's not making sense for me)

 

 

  if (is_array($this->dataTypes->data)) {
    reset($this->dataTypes->data);
    while (list($key, $val) = each ($this->dataTypes->data)) {
    if ($val->type != "N/A" && $val->type < 5) {
    $reporthtml .= sprintf("<td align=\"center\" nowrap=\"nowrap\">%s</td>", $val->name);
    }else if((count($val->type) - count($val->type != "N/A")) % 5){
    $reporthtml .= sprintf("<td align=\"center\" nowrap=\"nowrap\"> </td>");
}

Link to comment
https://forums.phpfreaks.com/topic/91176-getting-the-remainder/#findComment-467832
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.