PHP 7 Intermediate Essential Guide- PHP include_once & require_once

In this blog, I am going to Explain How to include_once & require_once in PHP. So within PHP, It’s actually possible to include PHP people files within other PHP files. It means when you use include_once & require_once more than one in any PHP file and you calling script it will be shown or print only one time if found more than once then it will be ignored.

So I’ve created a few other PHP files. And typically we’re going to use this for header footer and different files. So as you can see here within the header I’ve got what’s called page header and I’ve actually included some code in here as well.

And the same thing for the footer so got the page footer so let’s just writing that code into “footer.php“. And I’m also including some I should call the void then. And setting a variable called footer with this is the footer.

So now I can go over to my main index page and if I had an “header.php” set up so I’ve got my header here and title and then I’ve got my body. And in this body, I always wanted to have a header. And I want to have a footer so these are just going to be content headers and footers. Normally I know what you’re probably thinking well why wouldn’t I put this into the header and this in the footer so he can do that as well.

First and then I’m also going to call out that variable that’s being set up within PHP. So we’ll just see what our output is and we can see that we get that initial content and then we get the value of head.
There are also some additional ones where you could include it once. So if we had something like require or include and again to work almost identically.

So that’s the difference between required once and require. And the same thing for include and include once. So they’re going to work relatively the same way. Including the requires.

Output-

Rajesh Kumar
Follow me