Link to home
Start Free TrialLog in
Avatar of elepil
elepil

asked on

PHP var_dump question

Can someone please tell me what the numbers within [square brackets] mean? The following is a var_dump output from my application:

array (size=96)
  0 => 
    array (size=4)
      0 => 
        object(NoAppointment)[153]
      1 => 
        object(NoAppointment)[181]
      2 => 
        object(NoAppointment)[241]
      3 => 
        object(NoAppointment)[327]
  1 => 
    array (size=4)
      0 => 
        object(NoAppointmentFiller)[154]
      1 => 
        object(NoAppointmentFiller)[182]
      2 => 
        object(NoAppointmentFiller)[242]
      3 => 
        object(NoAppointmentFiller)[328]
  2 => 
    array (size=4)
      0 => 
        object(NoAppointmentFiller)[155]
      1 => 
        object(NoAppointmentFiller)[183]
      2 => 
        object(NoAppointmentFiller)[243]
      3 => 
        object(NoAppointmentFiller)[329]

Open in new window


Both the NoAppointment and NoAppointmentFiller classes in my array are empty classes:

    class NoAppointment {
    }
    class NoAppointmentFiller {
    }

Open in new window


So I'm really puzzled over the large numbers I'm seeing within the square brackets.

Thanks.
SOLUTION
Avatar of Phil Davidson
Phil Davidson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of elepil
elepil

ASKER

Phil, thanks for responding.

I am merely using those empty classes as "indicators" because I wanted to use a descriptive object to describe what I put in the array elements. I hope someone comes up with a good explanation of what those numbers represent.
Avatar of Marco Gasi
I would like to know what you pass to var_dump...
Avatar of elepil

ASKER

Marco, thanks for responding.

I pass to var_dump the array in question, which is a two-dimensional array. I call my array $arrWorkArea, so I did:

var_dump($arrWorkArea);

Open in new window

Okay, but then I need to know what is in the array and how you put it in.
Avatar of elepil

ASKER

Marco, it's a two-dimensional array that I use as a "pigeon hole". It is supposed to contain appointments made by customers.

$arrWorkArea is an array with 96 rows (from 00:00 to 24:00 in 15 minute increments) but a variable number of columns depending on the largest number of appointments for the same time slot (because appointments for different office personnel for the same time slot is permitted).

Does that help?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of elepil

ASKER

Marco, I normally try to make my posts as brief as possible, but here is the FULL var_dump of my $arrWorkArea array:

array (size=96)
  0 => 
    array (size=4)
      0 => 
        object(NoAppointment)[153]
      1 => 
        object(NoAppointment)[181]
      2 => 
        object(NoAppointment)[241]
      3 => 
        object(NoAppointment)[327]
  1 => 
    array (size=4)
      0 => 
        object(NoAppointment)[154]
      1 => 
        object(NoAppointment)[182]
      2 => 
        object(NoAppointment)[242]
      3 => 
        object(NoAppointment)[328]
  2 => 
    array (size=4)
      0 => 
        object(NoAppointment)[155]
      1 => 
        object(NoAppointment)[183]
      2 => 
        object(NoAppointment)[243]
      3 => 
        object(NoAppointment)[329]
  3 => 
    array (size=4)
      0 => 
        object(NoAppointment)[156]
      1 => 
        object(NoAppointment)[184]
      2 => 
        object(NoAppointment)[244]
      3 => 
        object(NoAppointment)[330]
  4 => 
    array (size=4)
      0 => 
        object(NoAppointment)[157]
      1 => 
        object(NoAppointment)[185]
      2 => 
        object(NoAppointment)[245]
      3 => 
        object(NoAppointment)[331]
  5 => 
    array (size=4)
      0 => 
        object(NoAppointment)[158]
      1 => 
        object(NoAppointment)[186]
      2 => 
        object(NoAppointment)[246]
      3 => 
        object(NoAppointment)[332]
  6 => 
    array (size=4)
      0 => 
        object(NoAppointment)[159]
      1 => 
        object(NoAppointment)[187]
      2 => 
        object(NoAppointment)[247]
      3 => 
        object(NoAppointment)[333]
  7 => 
    array (size=4)
      0 => 
        object(NoAppointment)[160]
      1 => 
        object(NoAppointment)[188]
      2 => 
        object(NoAppointment)[248]
      3 => 
        object(NoAppointment)[334]
  8 => 
    array (size=4)
      0 => 
        object(NoAppointment)[161]
      1 => 
        object(NoAppointment)[189]
      2 => 
        object(NoAppointment)[249]
      3 => 
        object(NoAppointment)[335]
  9 => 
    array (size=4)
      0 => 
        object(NoAppointment)[162]
      1 => 
        object(NoAppointment)[190]
      2 => 
        object(NoAppointment)[250]
      3 => 
        object(NoAppointment)[336]
  10 => 
    array (size=4)
      0 => 
        object(NoAppointment)[163]
      1 => 
        object(NoAppointment)[191]
      2 => 
        object(NoAppointment)[251]
      3 => 
        object(NoAppointment)[337]
  11 => 
    array (size=4)
      0 => 
        object(NoAppointment)[164]
      1 => 
        object(NoAppointment)[192]
      2 => 
        object(NoAppointment)[252]
      3 => 
        object(NoAppointment)[338]
  12 => 
    array (size=4)
      0 => 
        object(NoAppointment)[165]
      1 => 
        object(NoAppointment)[193]
      2 => 
        object(NoAppointment)[253]
      3 => 
        object(NoAppointment)[339]
  13 => 
    array (size=4)
      0 => 
        object(NoAppointment)[166]
      1 => 
        object(NoAppointment)[194]
      2 => 
        object(NoAppointment)[254]
      3 => 
        object(NoAppointment)[340]
  14 => 
    array (size=4)
      0 => 
        object(NoAppointment)[167]
      1 => 
        object(NoAppointment)[195]
      2 => 
        object(NoAppointment)[255]
      3 => 
        object(NoAppointment)[341]
  15 => 
    array (size=4)
      0 => 
        object(NoAppointment)[168]
      1 => 
        object(NoAppointment)[196]
      2 => 
        object(NoAppointment)[256]
      3 => 
        object(NoAppointment)[342]
  16 => 
    array (size=4)
      0 => 
        object(NoAppointment)[169]
      1 => 
        object(NoAppointment)[197]
      2 => 
        object(NoAppointment)[257]
      3 => 
        object(NoAppointment)[343]
  17 => 
    array (size=4)
      0 => 
        object(NoAppointment)[170]
      1 => 
        object(NoAppointment)[198]
      2 => 
        object(NoAppointment)[258]
      3 => 
        object(NoAppointment)[344]
  18 => 
    array (size=4)
      0 => 
        object(NoAppointment)[171]
      1 => 
        object(NoAppointment)[199]
      2 => 
        object(NoAppointment)[259]
      3 => 
        object(NoAppointment)[345]
  19 => 
    array (size=4)
      0 => 
        object(NoAppointment)[172]
      1 => 
        object(NoAppointment)[200]
      2 => 
        object(NoAppointment)[260]
      3 => 
        object(NoAppointment)[346]
  20 => 
    array (size=4)
      0 => 
        object(NoAppointment)[173]
      1 => 
        object(NoAppointment)[201]
      2 => 
        object(NoAppointment)[261]
      3 => 
        object(NoAppointment)[347]
  21 => 
    array (size=4)
      0 => 
        object(NoAppointment)[174]
      1 => 
        object(NoAppointment)[202]
      2 => 
        object(NoAppointment)[262]
      3 => 
        object(NoAppointment)[348]
  22 => 
    array (size=4)
      0 => 
        object(NoAppointment)[175]
      1 => 
        object(NoAppointment)[203]
      2 => 
        object(NoAppointment)[263]
      3 => 
        object(NoAppointment)[349]
  23 => 
    array (size=4)
      0 => 
        object(NoAppointment)[176]
      1 => 
        object(NoAppointment)[204]
      2 => 
        object(NoAppointment)[264]
      3 => 
        object(NoAppointment)[350]
  24 => 
    array (size=4)
      0 => 
        object(NoAppointment)[177]
      1 => 
        object(NoAppointment)[205]
      2 => 
        object(NoAppointment)[265]
      3 => 
        object(NoAppointment)[351]
  25 => 
    array (size=4)
      0 => 
        object(NoAppointment)[178]
      1 => 
        object(NoAppointment)[206]
      2 => 
        object(NoAppointment)[266]
      3 => 
        object(NoAppointment)[352]
  26 => 
    array (size=4)
      0 => 
        object(NoAppointment)[179]
      1 => 
        object(NoAppointment)[207]
      2 => 
        object(NoAppointment)[267]
      3 => 
        object(NoAppointment)[353]
  27 => 
    array (size=4)
      0 => 
        object(NoAppointment)[180]
      1 => 
        object(NoAppointment)[208]
      2 => 
        object(NoAppointment)[268]
      3 => 
        object(NoAppointment)[354]
  28 => 
    array (size=4)
      0 => 
        object(Appointment)[3]
          public 'apptid' => string '0000011263' (length=10)
          public 'custid' => string '0000000000' (length=10)
          public 'type' => string '2' (length=1)
          public 'apptfor' => string '0000000000' (length=10)
          public 'starttime' => string '2015-02-04 07:00:00' (length=19)
          public 'endtime' => string '2015-02-04 09:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string 'APPOINTMENTS STARTS AT 930AM
LAST APPOINTMENT IS AT   500PM' (length=59)
          public 'createdate' => string '2014-11-04 17:06:39' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-22 14:14:58' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => boolean false
          public 'rowspan' => int 8
      1 => 
        object(NoAppointment)[209]
      2 => 
        object(NoAppointment)[269]
      3 => 
        object(NoAppointment)[355]
  29 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[2]
      1 => 
        object(NoAppointment)[210]
      2 => 
        object(NoAppointment)[270]
      3 => 
        object(NoAppointment)[356]
  30 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[80]
      1 => 
        object(NoAppointment)[211]
      2 => 
        object(NoAppointment)[271]
      3 => 
        object(NoAppointment)[357]
  31 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[81]
      1 => 
        object(NoAppointment)[212]
      2 => 
        object(NoAppointment)[272]
      3 => 
        object(NoAppointment)[358]
  32 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[82]
      1 => 
        object(NoAppointment)[213]
      2 => 
        object(NoAppointment)[273]
      3 => 
        object(NoAppointment)[359]
  33 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[83]
      1 => 
        object(NoAppointment)[214]
      2 => 
        object(NoAppointment)[274]
      3 => 
        object(NoAppointment)[360]
  34 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[84]
      1 => 
        object(NoAppointment)[215]
      2 => 
        object(NoAppointment)[275]
      3 => 
        object(NoAppointment)[361]
  35 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[85]
      1 => 
        object(NoAppointment)[216]
      2 => 
        object(NoAppointment)[276]
      3 => 
        object(NoAppointment)[362]
  36 => 
    array (size=4)
      0 => 
        object(Appointment)[4]
          public 'apptid' => string '0000012468' (length=10)
          public 'custid' => string '0000001255' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 09:00:00' (length=19)
          public 'endtime' => string '2015-02-04 09:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/31/15' (length=7)
          public 'createdate' => string '2015-01-31 13:35:30' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-01-31 13:35:30' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[6]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[5]
          public 'apptid' => string '0000012256' (length=10)
          public 'custid' => string '0000000896' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 09:00:00' (length=19)
          public 'endtime' => string '2015-02-04 09:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/22/15 meg' (length=11)
          public 'createdate' => string '2015-01-22 14:15:23' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-22 14:15:23' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[8]
              ...
          public 'rowspan' => int 2
      2 => 
        object(Appointment)[7]
          public 'apptid' => string '0000012257' (length=10)
          public 'custid' => string '0000000109' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 09:00:00' (length=19)
          public 'endtime' => string '2015-02-04 09:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/22/15 meg' (length=11)
          public 'createdate' => string '2015-01-22 14:15:46' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-22 14:15:46' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[10]
              ...
          public 'rowspan' => int 2
      3 => 
        object(NoAppointment)[363]
  37 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[86]
      1 => 
        object(AppointmentFiller)[87]
      2 => 
        object(AppointmentFiller)[88]
      3 => 
        object(NoAppointment)[364]
  38 => 
    array (size=4)
      0 => 
        object(Appointment)[9]
          public 'apptid' => string '0000012089' (length=10)
          public 'custid' => string '0000000153' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 09:30:00' (length=19)
          public 'endtime' => string '2015-02-04 10:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/14/15 meeg' (length=12)
          public 'createdate' => string '2015-01-14 14:34:46' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-14 14:34:46' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[12]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[11]
          public 'apptid' => string '0000012090' (length=10)
          public 'custid' => string '0000000433' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 09:30:00' (length=19)
          public 'endtime' => string '2015-02-04 10:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/14/15 meeg' (length=12)
          public 'createdate' => string '2015-01-14 14:36:06' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-14 14:36:06' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[14]
              ...
          public 'rowspan' => int 2
      2 => 
        object(Appointment)[13]
          public 'apptid' => string '0000011875' (length=10)
          public 'custid' => string '0000004937' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 09:30:00' (length=19)
          public 'endtime' => string '2015-02-04 10:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/7/15 JG' (length=9)
          public 'createdate' => string '2015-01-07 16:55:00' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-13 14:18:51' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[16]
              ...
          public 'rowspan' => int 2
      3 => 
        object(NoAppointment)[365]
  39 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[89]
      1 => 
        object(AppointmentFiller)[90]
      2 => 
        object(AppointmentFiller)[91]
      3 => 
        object(NoAppointment)[366]
  40 => 
    array (size=4)
      0 => 
        object(Appointment)[15]
          public 'apptid' => string '0000011583' (length=10)
          public 'custid' => string '0000001294' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 10:00:00' (length=19)
          public 'endtime' => string '2015-02-04 10:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12/5/14 meeg' (length=12)
          public 'createdate' => string '2014-12-05 13:00:51' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2014-12-05 13:00:51' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[18]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[17]
          public 'apptid' => string '0000011608' (length=10)
          public 'custid' => string '0000002172' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 10:00:00' (length=19)
          public 'endtime' => string '2015-02-04 10:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.14.14 JG
DROP-OFF 
ZOSIMO BLAS PARENTS OF VANESSA BLAS. ' (length=59)
          public 'createdate' => string '2014-12-10 16:31:52' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-10 16:33:12' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[20]
              ...
          public 'rowspan' => int 2
      2 => 
        object(Appointment)[19]
          public 'apptid' => string '0000012486' (length=10)
          public 'custid' => string '0000000625' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 10:00:00' (length=19)
          public 'endtime' => string '2015-02-04 10:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/31/15' (length=7)
          public 'createdate' => string '2015-01-31 17:11:19' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-01-31 17:11:19' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[22]
              ...
          public 'rowspan' => int 2
      3 => 
        object(NoAppointment)[367]
  41 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[92]
      1 => 
        object(AppointmentFiller)[93]
      2 => 
        object(AppointmentFiller)[94]
      3 => 
        object(NoAppointment)[368]
  42 => 
    array (size=4)
      0 => 
        object(Appointment)[21]
          public 'apptid' => string '0000012342' (length=10)
          public 'custid' => string '0000005707' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 10:30:00' (length=19)
          public 'endtime' => string '2015-02-04 11:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string 'WITH  JENNIFER HERNANDEZ' (length=24)
          public 'createdate' => string '2015-01-28 14:55:53' (length=19)
          public 'createdbyid' => string '0000000040' (length=10)
          public 'editdate' => string '2015-01-31 13:57:13' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[24]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[23]
          public 'apptid' => string '0000011427' (length=10)
          public 'custid' => string '0000002605' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 10:30:00' (length=19)
          public 'endtime' => string '2015-02-04 11:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string 'nov.13, 2014 made appt. JG' (length=26)
          public 'createdate' => string '2014-11-13 10:42:31' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-11-13 10:43:02' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[26]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[277]
      3 => 
        object(NoAppointment)[369]
  43 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[95]
      1 => 
        object(AppointmentFiller)[96]
      2 => 
        object(NoAppointment)[278]
      3 => 
        object(NoAppointment)[370]
  44 => 
    array (size=4)
      0 => 
        object(Appointment)[25]
          public 'apptid' => string '0000011569' (length=10)
          public 'custid' => string '0000000425' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 11:00:00' (length=19)
          public 'endtime' => string '2015-02-04 11:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.4.14 JG ' (length=11)
          public 'createdate' => string '2014-12-04 16:25:35' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-04 16:25:35' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[28]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[27]
          public 'apptid' => string '0000012465' (length=10)
          public 'custid' => string '0000001475' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 11:00:00' (length=19)
          public 'endtime' => string '2015-02-04 11:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/31/15' (length=7)
          public 'createdate' => string '2015-01-31 13:22:29' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-01-31 13:22:29' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[30]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[279]
      3 => 
        object(NoAppointment)[371]
  45 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[97]
      1 => 
        object(AppointmentFiller)[98]
      2 => 
        object(NoAppointment)[280]
      3 => 
        object(NoAppointment)[372]
  46 => 
    array (size=4)
      0 => 
        object(Appointment)[29]
          public 'apptid' => string '0000011609' (length=10)
          public 'custid' => string '0000002152' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 11:30:00' (length=19)
          public 'endtime' => string '2015-02-04 12:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.10.14 JG ' (length=12)
          public 'createdate' => string '2014-12-10 16:39:13' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-10 16:39:13' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[32]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[31]
          public 'apptid' => string '0000011610' (length=10)
          public 'custid' => string '0000002314' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 11:30:00' (length=19)
          public 'endtime' => string '2015-02-04 12:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.10.14 JG' (length=11)
          public 'createdate' => string '2014-12-10 16:39:43' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-07 16:17:47' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[34]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[281]
      3 => 
        object(NoAppointment)[373]
  47 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[99]
      1 => 
        object(AppointmentFiller)[100]
      2 => 
        object(NoAppointment)[282]
      3 => 
        object(NoAppointment)[374]
  48 => 
    array (size=4)
      0 => 
        object(Appointment)[33]
          public 'apptid' => string '0000012050' (length=10)
          public 'custid' => string '0000001394' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 12:00:00' (length=19)
          public 'endtime' => string '2015-02-04 12:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/13/15 meeg' (length=12)
          public 'createdate' => string '2015-01-13 16:18:53' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-13 16:18:53' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[36]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[35]
          public 'apptid' => string '0000011870' (length=10)
          public 'custid' => string '0000000768' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 12:00:00' (length=19)
          public 'endtime' => string '2015-02-04 12:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/7/15 meeg' (length=11)
          public 'createdate' => string '2015-01-07 16:18:29' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-07 16:18:29' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[38]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[283]
      3 => 
        object(NoAppointment)[375]
  49 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[101]
      1 => 
        object(AppointmentFiller)[102]
      2 => 
        object(NoAppointment)[284]
      3 => 
        object(NoAppointment)[376]
  50 => 
    array (size=4)
      0 => 
        object(Appointment)[37]
          public 'apptid' => string '0000011680' (length=10)
          public 'custid' => string '0000001288' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 12:30:00' (length=19)
          public 'endtime' => string '2015-02-04 13:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.18.14 JG ' (length=12)
          public 'createdate' => string '2014-12-18 13:15:21' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-18 13:15:21' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[40]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[39]
          public 'apptid' => string '0000012505' (length=10)
          public 'custid' => string '0000002315' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 12:30:00' (length=19)
          public 'endtime' => string '2015-02-04 13:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string 'COMING BACK TO GIVE TUITION STATMENT FORM 1098T' (length=47)
          public 'createdate' => string '2015-02-01 12:44:54' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-02-01 12:44:54' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[42]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[285]
      3 => 
        object(NoAppointment)[377]
  51 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[103]
      1 => 
        object(AppointmentFiller)[104]
      2 => 
        object(NoAppointment)[286]
      3 => 
        object(NoAppointment)[378]
  52 => 
    array (size=4)
      0 => 
        object(Appointment)[41]
          public 'apptid' => string '0000011269' (length=10)
          public 'custid' => string '0000000000' (length=10)
          public 'type' => string '2' (length=1)
          public 'apptfor' => string '0000000000' (length=10)
          public 'starttime' => string '2015-02-04 13:00:00' (length=19)
          public 'endtime' => string '2015-02-04 14:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '**NO APPOINTMENTS AT THIS TIME***' (length=33)
          public 'createdate' => string '2014-11-11 17:10:49' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2014-11-11 17:10:49' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => boolean false
          public 'rowspan' => int 4
      1 => 
        object(Appointment)[43]
          public 'apptid' => string '0000012292' (length=10)
          public 'custid' => string '0000002773' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 13:00:00' (length=19)
          public 'endtime' => string '2015-02-04 13:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/26/15 meg' (length=11)
          public 'createdate' => string '2015-01-26 15:22:02' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-31 17:16:23' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[45]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[287]
      3 => 
        object(NoAppointment)[379]
  53 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[105]
      1 => 
        object(AppointmentFiller)[108]
      2 => 
        object(NoAppointment)[288]
      3 => 
        object(NoAppointment)[380]
  54 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[106]
      1 => 
        object(Appointment)[44]
          public 'apptid' => string '0000012514' (length=10)
          public 'custid' => string '0000002344' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 13:30:00' (length=19)
          public 'endtime' => string '2015-02-04 14:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '2/1/15' (length=6)
          public 'createdate' => string '2015-02-01 16:42:18' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-02-01 16:42:18' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[47]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[289]
      3 => 
        object(NoAppointment)[381]
  55 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[107]
      1 => 
        object(AppointmentFiller)[109]
      2 => 
        object(NoAppointment)[290]
      3 => 
        object(NoAppointment)[382]
  56 => 
    array (size=4)
      0 => 
        object(Appointment)[46]
          public 'apptid' => string '0000012106' (length=10)
          public 'custid' => string '0000000842' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 14:00:00' (length=19)
          public 'endtime' => string '2015-02-04 15:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/14/15  JG 
EMAILED CLIENT' (length=27)
          public 'createdate' => string '2015-01-14 16:41:03' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-16 21:39:50' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[49]
              ...
          public 'rowspan' => int 4
      1 => 
        object(Appointment)[48]
          public 'apptid' => string '0000011754' (length=10)
          public 'custid' => string '0000001642' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 14:00:00' (length=19)
          public 'endtime' => string '2015-02-04 14:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.24.14 JG' (length=11)
          public 'createdate' => string '2014-12-24 14:01:39' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-24 14:05:39' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[51]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[291]
      3 => 
        object(NoAppointment)[383]
  57 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[110]
      1 => 
        object(AppointmentFiller)[113]
      2 => 
        object(NoAppointment)[292]
      3 => 
        object(NoAppointment)[384]
  58 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[111]
      1 => 
        object(Appointment)[50]
          public 'apptid' => string '0000011732' (length=10)
          public 'custid' => string '0000000811' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 14:30:00' (length=19)
          public 'endtime' => string '2015-02-04 15:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.24.14 JG ' (length=12)
          public 'createdate' => string '2014-12-24 12:24:27' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-24 12:24:27' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[53]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[293]
      3 => 
        object(NoAppointment)[385]
  59 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[112]
      1 => 
        object(AppointmentFiller)[114]
      2 => 
        object(NoAppointment)[294]
      3 => 
        object(NoAppointment)[386]
  60 => 
    array (size=4)
      0 => 
        object(Appointment)[52]
          public 'apptid' => string '0000011845' (length=10)
          public 'custid' => string '0000000815' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 15:00:00' (length=19)
          public 'endtime' => string '2015-02-04 15:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/7/15 JG ' (length=10)
          public 'createdate' => string '2015-01-07 15:05:24' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-07 15:05:24' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[55]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[54]
          public 'apptid' => string '0000012528' (length=10)
          public 'custid' => string '0000002639' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 15:00:00' (length=19)
          public 'endtime' => string '2015-02-04 15:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '2.2.15 JG 
MARIA TALKED TO HER. ' (length=32)
          public 'createdate' => string '2015-02-02 11:35:16' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-02-02 11:35:16' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[57]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[295]
      3 => 
        object(NoAppointment)[387]
  61 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[115]
      1 => 
        object(AppointmentFiller)[116]
      2 => 
        object(NoAppointment)[296]
      3 => 
        object(NoAppointment)[388]
  62 => 
    array (size=4)
      0 => 
        object(Appointment)[56]
          public 'apptid' => string '0000012375' (length=10)
          public 'custid' => string '0000002900' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 15:30:00' (length=19)
          public 'endtime' => string '2015-02-04 16:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/30/15' (length=7)
          public 'createdate' => string '2015-01-30 10:25:19' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-01-30 10:26:24' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[59]
              ...
          public 'rowspan' => int 4
      1 => 
        object(Appointment)[58]
          public 'apptid' => string '0000011923' (length=10)
          public 'custid' => string '0000001268' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 15:30:00' (length=19)
          public 'endtime' => string '2015-02-04 16:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/8/15 ' (length=7)
          public 'createdate' => string '2015-01-08 12:06:47' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-08 12:06:47' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[61]
              ...
          public 'rowspan' => int 2
      2 => 
        object(Appointment)[60]
          public 'apptid' => string '0000011930' (length=10)
          public 'custid' => string '0000001815' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 15:30:00' (length=19)
          public 'endtime' => string '2015-02-04 16:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/8/15 JG' (length=9)
          public 'createdate' => string '2015-01-08 12:26:16' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-08 12:26:16' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[63]
              ...
          public 'rowspan' => int 2
      3 => 
        object(NoAppointment)[389]
  63 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[117]
      1 => 
        object(AppointmentFiller)[120]
      2 => 
        object(AppointmentFiller)[121]
      3 => 
        object(NoAppointment)[390]
  64 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[118]
      1 => 
        object(Appointment)[62]
          public 'apptid' => string '0000011908' (length=10)
          public 'custid' => string '0000001099' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 16:00:00' (length=19)
          public 'endtime' => string '2015-02-04 16:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/8/15 JG ' (length=10)
          public 'createdate' => string '2015-01-08 10:50:18' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-08 10:50:18' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[65]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[297]
      3 => 
        object(NoAppointment)[391]
  65 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[119]
      1 => 
        object(AppointmentFiller)[122]
      2 => 
        object(NoAppointment)[298]
      3 => 
        object(NoAppointment)[392]
  66 => 
    array (size=4)
      0 => 
        object(Appointment)[64]
          public 'apptid' => string '0000011640' (length=10)
          public 'custid' => string '0000001882' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 16:30:00' (length=19)
          public 'endtime' => string '2015-02-04 17:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.11.14 JG 
bringing joshua sacay's w2' (length=39)
          public 'createdate' => string '2014-12-11 14:22:02' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-24 12:26:38' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[67]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[66]
          public 'apptid' => string '0000012443' (length=10)
          public 'custid' => string '0000005716' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 16:30:00' (length=19)
          public 'endtime' => string '2015-02-04 17:00:00' (length=19)
          public 'apptstatus' => string '7' (length=1)
          public 'notes' => string '1/31/15 coming with sister maria christina' (length=42)
          public 'createdate' => string '2015-01-31 10:40:57' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-01-31 10:43:12' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[69]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[299]
      3 => 
        object(NoAppointment)[393]
  67 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[123]
      1 => 
        object(AppointmentFiller)[124]
      2 => 
        object(NoAppointment)[300]
      3 => 
        object(NoAppointment)[394]
  68 => 
    array (size=4)
      0 => 
        object(Appointment)[68]
          public 'apptid' => string '0000011532' (length=10)
          public 'custid' => string '0000000733' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 17:00:00' (length=19)
          public 'endtime' => string '2015-02-04 17:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '12.4.14 JG ' (length=11)
          public 'createdate' => string '2014-12-04 13:02:15' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2014-12-04 13:02:15' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[71]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[70]
          public 'apptid' => string '0000012472' (length=10)
          public 'custid' => string '0000000669' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 17:00:00' (length=19)
          public 'endtime' => string '2015-02-04 17:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/31/15 JG' (length=10)
          public 'createdate' => string '2015-01-31 14:24:06' (length=19)
          public 'createdbyid' => string '0000000030' (length=10)
          public 'editdate' => string '2015-01-31 14:24:06' (length=19)
          public 'editedbyid' => string '0000000030' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[73]
              ...
          public 'rowspan' => int 2
      2 => 
        object(Appointment)[72]
          public 'apptid' => string '0000012532' (length=10)
          public 'custid' => string '0000002307' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000031' (length=10)
          public 'starttime' => string '2015-02-04 17:00:00' (length=19)
          public 'endtime' => string '2015-02-04 17:30:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '2/4/15' (length=6)
          public 'createdate' => string '2015-02-04 09:57:36' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-02-04 17:48:00' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[75]
              ...
          public 'rowspan' => int 2
      3 => 
        object(NoAppointment)[395]
  69 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[125]
      1 => 
        object(AppointmentFiller)[126]
      2 => 
        object(AppointmentFiller)[127]
      3 => 
        object(NoAppointment)[396]
  70 => 
    array (size=4)
      0 => 
        object(Appointment)[74]
          public 'apptid' => string '0000012467' (length=10)
          public 'custid' => string '0000001262' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 17:30:00' (length=19)
          public 'endtime' => string '2015-02-04 18:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/31/15' (length=7)
          public 'createdate' => string '2015-01-31 13:30:05' (length=19)
          public 'createdbyid' => string '0000000041' (length=10)
          public 'editdate' => string '2015-01-31 13:30:05' (length=19)
          public 'editedbyid' => string '0000000041' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[77]
              ...
          public 'rowspan' => int 2
      1 => 
        object(Appointment)[76]
          public 'apptid' => string '0000011967' (length=10)
          public 'custid' => string '0000001326' (length=10)
          public 'type' => string '1' (length=1)
          public 'apptfor' => string '0000000002' (length=10)
          public 'starttime' => string '2015-02-04 17:30:00' (length=19)
          public 'endtime' => string '2015-02-04 18:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '1/9/15 meeg' (length=11)
          public 'createdate' => string '2015-01-09 13:43:59' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-09 13:43:59' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => 
            object(Customer)[79]
              ...
          public 'rowspan' => int 2
      2 => 
        object(NoAppointment)[301]
      3 => 
        object(NoAppointment)[397]
  71 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[128]
      1 => 
        object(AppointmentFiller)[129]
      2 => 
        object(NoAppointment)[302]
      3 => 
        object(NoAppointment)[398]
  72 => 
    array (size=4)
      0 => 
        object(Appointment)[78]
          public 'apptid' => string '0000011270' (length=10)
          public 'custid' => string '0000000000' (length=10)
          public 'type' => string '2' (length=1)
          public 'apptfor' => string '0000000000' (length=10)
          public 'starttime' => string '2015-02-04 18:00:00' (length=19)
          public 'endtime' => string '2015-02-04 00:00:00' (length=19)
          public 'apptstatus' => string '0' (length=1)
          public 'notes' => string '**NO APPOINTMNENTS AT THIS TIME**' (length=33)
          public 'createdate' => string '2014-11-11 17:11:26' (length=19)
          public 'createdbyid' => string '0000000031' (length=10)
          public 'editdate' => string '2015-01-09 13:43:28' (length=19)
          public 'editedbyid' => string '0000000031' (length=10)
          public 'deleted' => string 'n' (length=1)
          public 'objCust' => boolean false
          public 'rowspan' => int 24
      1 => 
        object(NoAppointment)[217]
      2 => 
        object(NoAppointment)[303]
      3 => 
        object(NoAppointment)[399]
  73 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[130]
      1 => 
        object(NoAppointment)[218]
      2 => 
        object(NoAppointment)[304]
      3 => 
        object(NoAppointment)[400]
  74 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[131]
      1 => 
        object(NoAppointment)[219]
      2 => 
        object(NoAppointment)[305]
      3 => 
        object(NoAppointment)[401]
  75 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[132]
      1 => 
        object(NoAppointment)[220]
      2 => 
        object(NoAppointment)[306]
      3 => 
        object(NoAppointment)[402]
  76 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[133]
      1 => 
        object(NoAppointment)[221]
      2 => 
        object(NoAppointment)[307]
      3 => 
        object(NoAppointment)[403]
  77 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[134]
      1 => 
        object(NoAppointment)[222]
      2 => 
        object(NoAppointment)[308]
      3 => 
        object(NoAppointment)[404]
  78 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[135]
      1 => 
        object(NoAppointment)[223]
      2 => 
        object(NoAppointment)[309]
      3 => 
        object(NoAppointment)[405]
  79 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[136]
      1 => 
        object(NoAppointment)[224]
      2 => 
        object(NoAppointment)[310]
      3 => 
        object(NoAppointment)[406]
  80 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[137]
      1 => 
        object(NoAppointment)[225]
      2 => 
        object(NoAppointment)[311]
      3 => 
        object(NoAppointment)[407]
  81 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[138]
      1 => 
        object(NoAppointment)[226]
      2 => 
        object(NoAppointment)[312]
      3 => 
        object(NoAppointment)[408]
  82 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[139]
      1 => 
        object(NoAppointment)[227]
      2 => 
        object(NoAppointment)[313]
      3 => 
        object(NoAppointment)[409]
  83 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[140]
      1 => 
        object(NoAppointment)[228]
      2 => 
        object(NoAppointment)[314]
      3 => 
        object(NoAppointment)[410]
  84 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[141]
      1 => 
        object(NoAppointment)[229]
      2 => 
        object(NoAppointment)[315]
      3 => 
        object(NoAppointment)[411]
  85 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[142]
      1 => 
        object(NoAppointment)[230]
      2 => 
        object(NoAppointment)[316]
      3 => 
        object(NoAppointment)[412]
  86 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[143]
      1 => 
        object(NoAppointment)[231]
      2 => 
        object(NoAppointment)[317]
      3 => 
        object(NoAppointment)[413]
  87 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[144]
      1 => 
        object(NoAppointment)[232]
      2 => 
        object(NoAppointment)[318]
      3 => 
        object(NoAppointment)[414]
  88 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[145]
      1 => 
        object(NoAppointment)[233]
      2 => 
        object(NoAppointment)[319]
      3 => 
        object(NoAppointment)[415]
  89 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[146]
      1 => 
        object(NoAppointment)[234]
      2 => 
        object(NoAppointment)[320]
      3 => 
        object(NoAppointment)[416]
  90 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[147]
      1 => 
        object(NoAppointment)[235]
      2 => 
        object(NoAppointment)[321]
      3 => 
        object(NoAppointment)[417]
  91 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[148]
      1 => 
        object(NoAppointment)[236]
      2 => 
        object(NoAppointment)[322]
      3 => 
        object(NoAppointment)[418]
  92 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[149]
      1 => 
        object(NoAppointment)[237]
      2 => 
        object(NoAppointment)[323]
      3 => 
        object(NoAppointment)[419]
  93 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[150]
      1 => 
        object(NoAppointment)[238]
      2 => 
        object(NoAppointment)[324]
      3 => 
        object(NoAppointment)[420]
  94 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[151]
      1 => 
        object(NoAppointment)[239]
      2 => 
        object(NoAppointment)[325]
      3 => 
        object(NoAppointment)[421]
  95 => 
    array (size=4)
      0 => 
        object(AppointmentFiller)[152]
      1 => 
        object(NoAppointment)[240]
      2 => 
        object(NoAppointment)[326]
      3 => 
        object(NoAppointment)[422]

Open in new window

ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of elepil

ASKER

Ray, thanks for responding. That's what I was thinking those numbers were -- instance numbers, but I wasn't sure. Thanks for your help!

Thanks to the rest for trying!