How to define global functions in PHP

前端 未结 7 1297
陌清茗
陌清茗 2020-12-01 11:43

How can I define a global function which would be accessible from any page?

7条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-01 12:25

    In file include.php:

    function myGlobalFunction() {
        // Do something
    }
    

    Then in every page you want to use it:

    include 'include.php';
    myGlobalFunction();
    

提交回复
热议问题