Jump to content

Classes Question


DaveTomneyUK

Recommended Posts

Hi,

I am new working with classes and have a question each of my files as a call at the top and bottom to include my header and footer like below

[code]
require_once("header.php");
require_once("footer.php");
[/code]

Is it possible to include them in a class so all I would need to add in my files are something like.

[code]
$generate->header();
$generate->footer();
[/code]
Link to comment
https://forums.phpfreaks.com/topic/12023-classes-question/
Share on other sites

Yes...

[code]<?php

class Generate
{
   function header()
   {
      require_once 'header.php';
   }
  
   function footer()
   {
      require_once 'footer.php';
   }
}

// Class initialization
$generate = new Generate;

$generate->header();

$generate->footer();

?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/12023-classes-question/#findComment-45732
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.