return list class variables

Discussion in 'PHP' started by srdva59, Jul 17, 2010.

  1. #1
    hi,
    i have created this class:

    class mostest extends mosDBTable {

    var $id=null;
    var $id_cliente = null;
    var $nome_cliente = null;
    var $data = null;
    var $hora = null;

    now i want creat a function to check if all variables is created in a table.
    for example i want return something like this: echo name_var[0] -> $id

    i have found this on the net:
    $object = new mostest($teste);
    $var_teste = get_class_variables($object);
    but i receive this error:

    Call to undefined function: get_class_variables i using php 4
    how can i return the variables list?
    thanks a lot for your help
    :)
     
    srdva59, Jul 17, 2010 IP
  2. lukeg32

    lukeg32 Peon

    Messages:
    645
    Likes Received:
    19
    Best Answers:
    1
    Trophy Points:
    0
    #2

    Im not sure I follow what you are trying to do - can you please expand on this?



    You are using an object and when you call functions/properties of the object you need to reference it as follows;

    $object = new  mostest($teste);
    $var_teste = $object->get_class_variables();
    PHP:
    this is assuming that you have a function inside your class called 'get_class_variables'
     
    lukeg32, Jul 19, 2010 IP