PHP面向对象设计总结

获取对象属性 get_object_vars

注意: get_class_vars 获取的属性的值是初始化的默认值,不是运行过程中,更改的值。

get the classname without the namespace

function get_class_name($classname)
{
    if ($pos = strrpos($classname, ‘\\‘)) return substr($classname, $pos + 1);
    return $pos;
}

PHP面向对象设计总结

上一篇:js:输出100内与7相关的数:被7整除,个位有7,十位有7;


下一篇:Asp.net Form 应用程序与Bootstrap.css等第三方库的结合使用。