Welcome Guest, Not a member yet? Register   Sign In
Is it correct to say function?
#2

(This post was last modified: 02-21-2020, 07:48 PM by dave friend.)

A "method" is a "function" that belongs to a class. Though "method" would be a more precise description either term is correct.

Keep in mind that a class method is defined using the keyword "function", e.g.

PHP Code:
<?php
class SimpleClass
{
    
// method definition
    
public function displayHello() {
        echo 
"Hello World";
    }

Reply


Messages In This Thread
RE: Is it correct to say function? - by dave friend - 02-21-2020, 07:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB