首页 > 代码库 > PHP基础知识之对象Object

PHP基础知识之对象Object

<?php
class foo-----定义类
{
    function do_foo()---类的方法
    {
        echo "Doing foo."; 
    }
}

$bar = new foo;----实例化类
$bar->do_foo();---调用类的方法
?>

PHP基础知识之对象Object