一个月前我买了一本书开始学习 PHP,这本书的问题是它没有告诉你如何开始编写你的第一页,它只告诉你什么是函数、变量、类、它们是如何工作的以及像这样的东西。
我已经读完了这本书,但正如我所说,它并没有告诉你如何开始,我试图自己弄清楚,我的 index.php 文件看起来像这样:
include_once($_SERVER['DOCUMENT_ROOT'] . '/myweb/lib/config.php);
session_start();
// checks if there is a valid session, if it is not valid, it will redirect to the login page
checkSession();
// if the session is valid it will display this file
include_once($_SERVER['DOCUMENT_ROOT'] . '/myweb/app/main.php);
它工作正常,但有时它似乎在我不断添加功能时变慢,所以我开始想知道编写/构建 index.php 页面的正确方法是什么?你怎么写你的?
谢谢你的帮助。