Home >Backend Development >PHP Tutorial >PHP learning diary (1) - the use of classes and functions, php diary_PHP tutorial

PHP learning diary (1) - the use of classes and functions, php diary_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-12 09:07:46795browse

PHP learning diary (1) - the use of classes and functions, php diary

1. Custom functions

<span>function</span> add(<span>$a</span>,<span>$b</span><span>){
    </span><span>$c</span>=<span>$a</span>+<span>$b</span><span>;
    </span><span>echo</span> 'add test:'<span>;
    </span><span>echo</span> <span>$c</span><span>;
    </span><span>return</span> <span>$c</span><span>;
}
add(</span>1,2);

Output result:

add test:3

2. Call the functions in the class

1. Double colon::, no need to instantiate, just call the class name directly

<span>class</span><span> test{
    </span><span>public</span> <span>function</span> add(<span>$a</span>,<span>$b</span><span>){
        </span><span>$c</span>=<span>$a</span>+<span>$b</span><span>;
        </span><span>echo</span> 'class test:'<span>;    
        </span><span>echo</span> <span>$c</span><span>;        
        </span><span>return</span> <span>$c</span><span>;
    }
}
test</span>::add(1,2);

2, ->, the instantiated object uses

<span>class</span><span> test{
    </span><span>public</span> <span>function</span> add(<span>$a</span>,<span>$b</span><span>){
        </span><span>$c</span>=<span>$a</span>+<span>$b</span><span>;
        </span><span>echo</span> 'class test:'<span>;    
        </span><span>echo</span> <span>$c</span><span>;        
        </span><span>return</span> <span>$c</span><span>;
    }
}
</span><span>$object</span>=<span>new</span><span> test();
</span><span>$object</span>->add(1,3);

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1059466.htmlTechArticlePHP learning diary (1) - the use of classes and functions, php diary 1. Custom function function add( $a , $b ){ $c = $a $b ; echo 'add test:' ; echo $c ; return $c ;}add( 1,2); Output...
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