欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP学习日记(一)类、函数的使用,php日记

程序员文章站 2024-01-26 17:56:40
...

PHP学习日记(一)——类、函数的使用,php日记

一、自定义函数

function add($a,$b){
    $c=$a+$b;
    echo 'add test:';
    echo $c;
    return $c;
}
add(1,2);

输出结果:

add test:3

二、调用类里面函数

1、双冒号::,不用实例化,直接类名调用

class test{
    public function add($a,$b){
        $c=$a+$b;
        echo 'class test:';    
        echo $c;        
        return $c;
    }
}
test::add(1,2);

2、->,实例化后的对象使用

class test{
    public function add($a,$b){
        $c=$a+$b;
        echo 'class test:';    
        echo $c;        
        return $c;
    }
}
$object=new test();
$object->add(1,3);
相关标签: php