Get class php,PHP: get_class_vars - Manual

This is one of the best php functions. Look at what you can do

class Object

{

var $updtFields;//keep track of affected values

function Object($record="") {

if (is_array($record))

{

$this->updtFields = array();

foreach(array_keys(get_class_vars(get_class($this))) as $k)

if (isset($record[$k]))

{

$this->$k = $record[$k];

$this->updtFields[] = $k;

}

}

}//end of arrayToObject

function toDebug($nl='
')

{

foreach(array_keys(get_class_vars(get_class($this))) as $k)

echo "$k = [" . $this->$k . "]{$nl}";

}//end of toDebug

}

Now you can do really cool things. If you have a form like

and you define your class like this

class Person extends Object{

var $name; //same same as in the form

var $phone;

}

when you submmit the form, you can get the data like

$person = new Person($_POST);

//everything in just one line,cool!! Also if you use pear db or adodb when you get data from the database you can do the same thing except use the $row that you get from the database. Remember to ask the result is associative mode.

This is my core Object for everthing I do and it works great.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值