search
HomeBackend DevelopmentPHP ProblemWhat are the methods or attributes of the php object?
What are the methods or attributes of the php object?Feb 15, 2022 pm 03:32 PM
phpobjectAttributesmethod

In PHP objects, methods refer to functions created in the class structure, which implement a behavior in the class and are part of the class; while attributes refer to variables directly declared in the class structure, in the object There can be multiple attributes, and each variable stores different attribute information of the object.

What are the methods or attributes of the php object?

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

First of all, let’s briefly understand the related concepts:

  • Class: class is the outermost structure that defines the object-oriented subject. It is also used to wrap the subject data and functions (functions). A class is a type of common affairs. Representative represents the commonality of affairs.

  • Object: Object is a specific representative of a certain type of transaction and a specific unit of actual data and functional operations. It is also called an instance.

  • Instantiation: new, the process of obtaining a specific instance that conforms to the abstract concept from an abstract concept.

  • ##Class members: member refers to all the contents in the class structure. There are three types of class members;

  • Method: Method is essentially a function created in the class structure, also called a member method, or member function.

  • Property: Property is essentially a variable created in the class structure, also called a member variable.

Let’s focus on properties and methods.

Member attributes

Variables declared directly in a class are called member attributes (can also be called member variables). Multiple variables can be declared in a class, that is There can be multiple member attributes in an object, and each variable stores different attribute information of the object. The syntax format is as follows:

访问权限修饰符 属性名称 = 属性值;

The type of member attributes can be scalar types and composite types in PHP, so it can also be objects instantiated by other classes, but it is meaningless to use resources and empty types in classes .

As we mentioned before, no keyword modification is required when declaring a variable. However, when declaring member properties in a class, a keyword must be used in front of the variable to modify it, such as public, private, static, etc., but The variables modified by these keywords have certain meanings. If you do not need any modification with specific meaning, you can use the "var" keyword. Once the member attributes are modified with other keywords, you need to remove "var".

Commonly used access permission modifiers and their meanings are as follows:

  • public: public, can be used inside the class, in subclasses, or outside the class , unrestricted;

  • protected: protected, can be used inside the class and subclasses, but cannot be used outside the class;

  • private: Private, can only be used inside the class, and cannot be used outside the class or in subclasses.

Note: A class, that is, all the content between a pair of curly brackets must be in a piece of code, that is, between a Cannot be divided into multiple pieces.

[Example] Create a Students class and declare some member attributes in the class. The code is as follows:

<?php
    class Students{
        var $name;
        public $age;
        private $sex;
        public static $school;
    }
?>

Tip: Permission modifiers can be mixed with the keyword static that defines static variables. used together as shown in the code above.

Member methods

Functions defined in a class are called member methods. The only difference between functions and member methods is that functions implement an independent function, while member methods implement a behavior in the class and are part of the class.

You can declare multiple member methods in a class. The declaration of member methods is exactly the same as the declaration of functions. However, when declaring member methods, you can add some access modifiers in front of the function keyword to control access. Permissions, such as public, private, protected, etc.

Another thing to note is that the declared member methods must be related to the class and cannot be some meaningless operations. For example, when declaring the student class, if you declare the "flying" member method, every student instantiated can fly. This is a design error.

[Example] Create some member methods in the Students class created in the above example.

<?php
    class Students{
        var $name;
        public $age;
        private $sex;
        public static $school;
        public function Write(){
           
        }
        protected static function Read(){
        }
        function Listen(){
           
        }
    }
?>

The permission modifier in front of the member method can be omitted. If omitted, the default permission is public. The declaration of member attributes and member methods in a class is optional and can exist at the same time or separately, depending on the actual situation.

In PHP7, type declarations are introduced. We can declare types for the formal parameters and return values ​​of member methods. The format is as follows:

[权限修饰符] function 方法名 (类型 参数1, 类型 参数2, ..., 类型 参数n) : 返回值类型 {
    ... ...
}

The parameter types supported in PHP7 include integers. type, float, string and Boolean types. The sample code is as follows:

<?php
    class Students{
        var $name;
        public $age;
        private $sex;
        public static $school;
        public function Write(string $a, int $b):bool{
           
        }
        protected static function Read(string $str):int{
        }
        function Listen(int $num):bool{
        }
    }
?>

Instantiate the object and access the members in the object

The object contains member properties and member methods, access the members in the object Members are similar to accessing elements in an array. Members in an object can only be accessed through a reference to the object. But a special operator -> must be used to complete the access to the members of the object. The syntax format for accessing the members of the object is as follows:

变量名 = new 类名(参数);   //实例化一个类
变量名 -> 成员属性 = 值;   //为成员属性赋值
变量名 -> 成员属性;           //直接获取成员属性的值
变量名 -> 成员方法();        //访问对象中的成员方法

下面通过一个示例来演示一下:

<?php
header("Content-type:text/html;charset=utf-8");
class Website{
    public $name, $url, $title;
    public function demo(){
        echo &#39;成员方法 demo()&#39;;
    }
}
$student = new Website();
$student -> name = &#39;php中文网&#39;;
$student -> url = &#39;https://www.php.cn/&#39;;
$student -> title = &#39;实例化对象&#39;;
echo $student -> name.&#39;<br>&#39;;
echo $student -> url.&#39;<br>&#39;;
echo $student -> title.&#39;<br>&#39;;
$student -> demo();
?>

What are the methods or attributes of the php object?

推荐学习:《PHP视频教程

The above is the detailed content of What are the methods or attributes of the php object?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)