php类中定义了一个函数,怎么使用它?
答案:5 悬赏:30 手机版
解决时间 2021-04-26 16:48
- 提问者网友:留有余香
- 2021-04-26 03:29
php类中定义了一个函数,怎么使用它?
最佳答案
- 五星知识达人网友:青灯有味
- 2021-04-26 04:10
php类中定义的函数有几种,
例如:
class A{
// 公共方法
public function test(){
// dosomething
}
// 受保护的方法
protected function test2(){
// dosomething
}
// 静态方法
static function st(){
// dosomething
}
// 私有方法
private function test3(){
// dosomething
}
// 内部访问
public function use(){
// 使用公共方法
$this->test();
// 使用受保护方法
$this->test2();
// 使用私有方法
$this->test3();
// 使用静态方法
self::st();
}
}
// 外部调用方法:
$a = new A();
$a->test(); // 外部使用test,
// $a对象不能外部使用受保护方法和私有方法,受保护方法可以被继承到,而私有方法不能被继承。
A::st(); // 外部使用静态方法
例如:
class A{
// 公共方法
public function test(){
// dosomething
}
// 受保护的方法
protected function test2(){
// dosomething
}
// 静态方法
static function st(){
// dosomething
}
// 私有方法
private function test3(){
// dosomething
}
// 内部访问
public function use(){
// 使用公共方法
$this->test();
// 使用受保护方法
$this->test2();
// 使用私有方法
$this->test3();
// 使用静态方法
self::st();
}
}
// 外部调用方法:
$a = new A();
$a->test(); // 外部使用test,
// $a对象不能外部使用受保护方法和私有方法,受保护方法可以被继承到,而私有方法不能被继承。
A::st(); // 外部使用静态方法
全部回答
- 1楼网友:冷風如刀
- 2021-04-26 06:54
这是在类中定义的方法.
你需要:
$a=new test(); //初始化这个类.
echo $a->Get_test("你需要的值");
你需要:
$a=new test(); //初始化这个类.
echo $a->Get_test("你需要的值");
- 2楼网友:往事埋风中
- 2021-04-26 06:06
定义一个对象 进行调用啊 so easy!!!!!
- 3楼网友:不想翻身的咸鱼
- 2021-04-26 05:43
实例化一个对象调用它
- 4楼网友:毛毛
- 2021-04-26 05:19
方法一:(同楼上)
$a=new test(); //初始化这个类.
echo $a->Get_test("你需要的值");
方法二:
test::Get_test("你需要的值");追问谢谢
$a=new test(); //初始化这个类.
echo $a->Get_test("你需要的值");
方法二:
test::Get_test("你需要的值");追问谢谢
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯