本篇文章给大家分享的内容是关于PHP调用其他文件中的类,有着一定的参考价值,有需要的朋友可以参考一下
在本片文章中给大家详细分享了PHP程序中去调用另外一个文件类的方法和代码写法,一起学习下。
首先在一个tool.php文件中声明一个类:
<?php class tool { function say(){ $result="Hello,World"; return $result; } }
在另一文件main.php调用上面的类中的方法:
<?php require_once 'tool.php'; $tool=new tool(); $content=$tool->say(); echo $content; ?>
相关推荐:
Atas ialah kandungan terperinci PHP调用其他文件中的类. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!