How to call methods of other classes in php?

coldplay.xixi
Release: 2023-03-03 08:36:01
Original
4937 people have browsed it

How php calls other classes: First create a file named [tool.php] and declare a class in the file; then create another file named [main.php], And just call the above class in the file.

How to call methods of other classes in php?

php calls methods of other classes:

The calling method in Java is import, but not in PHP Import this function. Generally,require()is used to call other classes in PHP. The specific method of calling other classes in PHP is as follows:

1. First, there should be a file namedtool.phpfile, declare a class in the file.

How to call methods of other classes in php?

#2. Then you need to have another file namedmain.php, and call the above class in the file. Methods as below.

How to call methods of other classes in php?

Extended information:

A class is a collection of variables and functions that act on these variables. Use the following syntax to define a class:

items[$artnr] += $num; } // 将 $num 个 $artnr 物品从购物车中取出 function remove_item($artnr, $num) { if ($this->items[$artnr] > $num) { $this->items[$artnr] -= $num; return true; } elseif ($this->items[$artnr] == $num) { unset($this->items[$artnr]); return true; } else { return false; } } } ?>
Copy after login

The above example defines a Cart class, which consists of an array of items in the shopping cart and two functions for adding and removing items from the shopping cart. composition.

Related learning recommendations:PHP programming from entry to proficiency

The above is the detailed content of How to call methods of other classes in php?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!