1.php中require的功能
例如:创建lib.php文件,在文件中写函数sayhello(),如何在另一个页面index.php中调用sayhello()?,在index中使用require关键字语句require ‘lib.php’;就可直接调用了
2.php中include关键字功能
与require相同
PHP的require关键字和include关键字
最新推荐文章于 2024-05-12 12:21:18 发布
1.php中require的功能
例如:创建lib.php文件,在文件中写函数sayhello(),如何在另一个页面index.php中调用sayhello()?,在index中使用require关键字语句require ‘lib.php’;就可直接调用了
2.php中include关键字功能
与require相同