PHP 函数返回特殊类型的数据
在 PHP 中,函数可以返回特殊类型的数据,包括:
实战案例
// 返回空值 $var = null; // 返回布尔值 $is_true = true; // 返回整型 $age = 30; // 返回浮点型 $balance = 255.5; // 返回字符串 $name = "John Doe"; // 返回数组 $arr = [1, 2, 3]; // 返回对象 class Person { public $name; public $age; public function __construct($name, $age) { $this->name = $name; $this->age = $age; } } $person = new Person("John Doe", 30); // 返回资源 $file = fopen('test.txt', 'w');
以上是PHP 函数返回特殊类型的数据具体有哪些?的详细内容。更多信息请关注PHP中文网其他相关文章!