×
1 Choose EITC/EITCA Certificates
2 Learn and take online exams
3 Get your IT skills certified

Confirm your IT skills and competencies under the European IT Certification framework from anywhere in the world fully online.

EITCA Academy

Digital skills attestation standard by the European IT Certification Institute aiming to support Digital Society development

SIGN IN YOUR ACCOUNT TO HAVE ACCESS TO DIFFERENT FEATURES

CREATE AN ACCOUNT FORGOT YOUR PASSWORD?

FORGOT YOUR DETAILS?

AAH, WAIT, I REMEMBER NOW!

CREATE ACCOUNT

ALREADY HAVE AN ACCOUNT?
EUROPEAN INFORMATION TECHNOLOGIES CERTIFICATION ACADEMY - ATTESTING YOUR PROFESSIONAL DIGITAL SKILLS
  • SIGN UP
  • LOGIN
  • SUPPORT

EITCA Academy

EITCA Academy

The European Information Technologies Certification Institute - EITCI ASBL

Certification Provider

EITCI Institute ASBL

Brussels, European Union

Governing European IT Certification (EITC) framework in support of the IT professionalism and Digital Society

  • CERTIFICATES
    • EITCA ACADEMIES
      • EITCA ACADEMIES CATALOGUE<
      • EITCA/CG COMPUTER GRAPHICS
      • EITCA/IS INFORMATION SECURITY
      • EITCA/BI BUSINESS INFORMATION
      • EITCA/KC KEY COMPETENCIES
      • EITCA/EG E-GOVERNMENT
      • EITCA/WD WEB DEVELOPMENT
      • EITCA/AI ARTIFICIAL INTELLIGENCE
    • EITC CERTIFICATES
      • EITC CERTIFICATES CATALOGUE<
      • COMPUTER GRAPHICS CERTIFICATES
      • WEB DESIGN CERTIFICATES
      • 3D DESIGN CERTIFICATES
      • OFFICE IT CERTIFICATES
      • BITCOIN BLOCKCHAIN CERTIFICATE
      • WORDPRESS CERTIFICATE
      • CLOUD PLATFORM CERTIFICATENEW
    • EITC CERTIFICATES
      • INTERNET CERTIFICATES
      • CRYPTOGRAPHY CERTIFICATES
      • BUSINESS IT CERTIFICATES
      • TELEWORK CERTIFICATES
      • PROGRAMMING CERTIFICATES
      • DIGITAL PORTRAIT CERTIFICATE
      • WEB DEVELOPMENT CERTIFICATES
      • DEEP LEARNING CERTIFICATESNEW
    • CERTIFICATES FOR
      • EU PUBLIC ADMINISTRATION
      • TEACHERS AND EDUCATORS
      • IT SECURITY PROFESSIONALS
      • GRAPHICS DESIGNERS & ARTISTS
      • BUSINESSMEN AND MANAGERS
      • BLOCKCHAIN DEVELOPERS
      • WEB DEVELOPERS
      • CLOUD AI EXPERTSNEW
  • FEATURED
  • SUBSIDY
  • HOW IT WORKS
  •   IT ID
  • ABOUT
  • CONTACT
  • MY ORDER
    Your current order is empty.
EITCIINSTITUTE
CERTIFIED

What are methods in PHP classes and how can we define their visibility?

by EITCA Academy / Tuesday, 08 August 2023 / Published in Web Development, EITC/WD/PMSF PHP and MySQL Fundamentals, Classes and objectes in PHP, Classes and objects - part 1, Examination review

Methods in PHP classes are functions that are defined within a class and are used to perform specific actions or tasks. They encapsulate the behavior of an object and allow it to interact with other objects or manipulate its own data. Methods can be defined with different levels of visibility, which determine whether they can be accessed from within the class itself, from derived classes, or from outside the class.

In PHP, there are three levels of visibility for methods: public, protected, and private.

1. Public methods: Public methods are accessible from anywhere, both within the class and outside the class. They can be called directly on an object instance or through the scope resolution operator (::) on the class itself. Public methods are commonly used to provide the primary interface for interacting with an object.

Here's an example of a public method in a PHP class:

php
class MyClass {
    public function publicMethod() {
        // Method logic here
    }
}

$obj = new MyClass();
$obj->publicMethod(); // Calling the public method

2. Protected methods: Protected methods are only accessible from within the class itself and its derived classes. They cannot be called directly from outside the class. Protected methods are useful when you want to provide access to certain methods to derived classes, but restrict access to the general public.

Here's an example of a protected method in a PHP class:

php
class MyClass {
    protected function protectedMethod() {
        // Method logic here
    }
}

class MyDerivedClass extends MyClass {
    public function derivedMethod() {
        $this->protectedMethod(); // Accessing the protected method
    }
}

$obj = new MyDerivedClass();
$obj->derivedMethod(); // Calling the derived method

3. Private methods: Private methods are only accessible from within the class itself. They cannot be called from derived classes or outside the class. Private methods are typically used for internal implementation details that should not be exposed to other classes or objects.

Here's an example of a private method in a PHP class:

php
class MyClass {
    private function privateMethod() {
        // Method logic here
    }

    public function publicMethod() {
        $this->privateMethod(); // Accessing the private method
    }
}

$obj = new MyClass();
$obj->publicMethod(); // Calling the public method

To define the visibility of a method, you use the visibility keywords (public, protected, or private) followed by the function keyword and the method name. For example:

php
class MyClass {
    public function publicMethod() {
        // Method logic here
    }

    protected function protectedMethod() {
        // Method logic here
    }

    private function privateMethod() {
        // Method logic here
    }
}

By choosing the appropriate visibility level for your methods, you can control how they can be accessed and ensure proper encapsulation and abstraction in your PHP classes.

Methods in PHP classes are functions that define the behavior of an object. They can be defined with different levels of visibility (public, protected, or private) to control their accessibility from within the class, derived classes, or outside the class.

Other recent questions and answers regarding Classes and objectes in PHP:

  • What is the recommended approach for accessing and modifying properties in a class?
  • How can we update the value of a private property in a class?
  • What is the benefit of using getters and setters in a class?
  • How can we access the value of a private property in a class?
  • What is the purpose of making properties private in a class?
  • What is a constructor function in PHP classes and what is its purpose?
  • What are properties in PHP classes and how can we define their visibility?
  • How do we create an object from a class in PHP?
  • What is a class in PHP and what purpose does it serve?

More questions and answers:

  • Field: Web Development
  • Programme: EITC/WD/PMSF PHP and MySQL Fundamentals (go to the certification programme)
  • Lesson: Classes and objectes in PHP (go to related lesson)
  • Topic: Classes and objects - part 1 (go to related topic)
  • Examination review
Tagged under: Classes, Methods, PHP, Private, Protected, Public, Visibility, Web Development
Home » Classes and objectes in PHP / Classes and objects - part 1 / EITC/WD/PMSF PHP and MySQL Fundamentals / Examination review / Web Development » What are methods in PHP classes and how can we define their visibility?

Certification Center

USER MENU

  • My Account

CERTIFICATE CATEGORY

  • EITC Certification (106)
  • EITCA Certification (9)

What are you looking for?

  • Introduction
  • How it works?
  • EITCA Academies
  • EITCI DSJC Subsidy
  • Full EITC catalogue
  • Your order
  • Featured
  •   IT ID
  • EITCA reviews (Reddit publ.)
  • About
  • Contact
  • Cookie Policy (EU)

EITCA Academy is a part of the European IT Certification framework

The European IT Certification framework has been established in 2008 as a Europe based and vendor independent standard in widely accessible online certification of digital skills and competencies in many areas of professional digital specializations. The EITC framework is governed by the European IT Certification Institute (EITCI), a non-profit certification authority supporting information society growth and bridging the digital skills gap in the EU.

    EITCA Academy Secretary Office

    European IT Certification Institute ASBL
    Brussels, Belgium, European Union

    EITC / EITCA Certification Framework Operator
    Governing European IT Certification Standard
    Access contact form or call +32 25887351

    Follow EITCI on Twitter
    Visit EITCA Academy on Facebook
    Engage with EITCA Academy on LinkedIn
    Check out EITCI and EITCA videos on YouTube

    Funded by the European Union

    Funded by the European Regional Development Fund (ERDF) and the European Social Fund (ESF), governed by the EITCI Institute since 2008

    Information Security Policy | DSRRM and GDPR Policy | Data Protection Policy | Record of Processing Activities | HSE Policy | Anti-Corruption Policy | Modern Slavery Policy

    Automatically translate to your language

    Terms and Conditions | Privacy Policy
    Follow @EITCI
    EITCA Academy

    Your browser doesn't support the HTML5 CANVAS tag.

    • Quantum Information
    • Cybersecurity
    • Artificial Intelligence
    • Web Development
    • Cloud Computing
    • GET SOCIAL
    EITCA Academy


    © 2008-2026  European IT Certification Institute
    Brussels, Belgium, European Union

    TOP
    CHAT WITH SUPPORT
    Do you have any questions?
    We will reply here and by email. Your conversation is tracked with a support token.