PHP调用其他文件中的类

在本片文章中给大家详细分享了PHP程序中去调用另外一个文件类的方法和代码写法,一起学习下。

首先在一个tool.php文件中声明一个类:

  1. <?php
  2. class tool {
  3. function say(){
  4. $result="Hello,World";
  5. return $result;
  6. }
  7. }

在另一文件main.php调用上面的类中的方法:

  1. <?php
  2. require_once 'tool.php';
  3. $tool=new tool();
  4. $content=$tool->say();
  5. echo $content;
  6. ?>