个性化阅读
专注于IT技术分析

PHP类型提示

本文概述

  • 简而言之, 类型提示意味着提供功能提示以仅接受给定的数据类型。
  • 用技术术语来说, 我们可以说类型提示是一种可以强制函数接受所需数据类型的方法。
  • 在PHP中, 我们可以将类型提示用于对象, 数组和可调用数据类型。

例子1

<?php
	
	class a
	{
		public $c= "hello srcmini";
	}
	//create function with class name argument
	function display(a $a1)
	{
		//call variable
		echo $a1->c;
	}
	display(new a());
?>

输出

PHP类型提示

例子2

<?php
	
	class Test1
	{
		public $var= "hello srcmini and SSSIT";
	}
	//create function with class name argument
	function typehint(Test1 $t1)
	{
		//call variable
		echo $t1->var;
	}
	//call function with call name as a argument
	typehint(new Test1());
?>

输出

PHP类型提示
赞(0)
未经允许不得转载:srcmini » PHP类型提示

评论 抢沙发

评论前必须登录!