How to use a PHP class from another file?

前端 未结 5 1674
庸人自扰
庸人自扰 2020-12-05 06:41

Let\'s say I\'ve got two files class.php and page.php

class.php



        
5条回答
  •  一个人的身影
    2020-12-05 06:57

    Use include_once instead.
    This error means that you have already included this file.

    include_once(LIB.'/class.php');

提交回复
热议问题