Jump to content

Recommended Posts

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

:)

Link to comment
https://forums.phpfreaks.com/topic/208049-return-list-class-variables/
Share on other sites

The function is get_class_vars not get_class_variables(), but this won't work for what you're looking for. This gets the default values for a class given the name of the class, not an instance of the class. Instead use get_object_vars.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.