commit 1a2d5b96484b8a3f790c2ceb50ffa225d82c3df2
Author: MoiBaguette <[email protected]>
Date: Mon, 29 May 2023 15:53:07 +0200
start of php templating engine
Diffstat:
4 files changed, 67 insertions(+), 0 deletions(-)
diff --git a/Template.php b/Template.php
@@ -0,0 +1,39 @@
+<?php
+namespace Lollipop {
+use ErrorException;
+ Class Template{
+ function template(string $uri, array $data) : string{
+ /* this function takes a uri and a string array data */
+ /* opens a stream to the uri specified file and stores the content in $file*/
+
+ $filepointer = fopen($uri, "r") or die(throw new ErrorException("Unable to open file!", null, null, $uri));
+ $filesize = filesize($uri);
+ $file = fread($filepointer,$filesize);
+ fclose($filepointer);
+
+ $tag = "<template>";
+ return $this->insert_data($tag, $filesize, $file, $data);
+ }
+ private function insert_data(string $tag, int $filesize, string $file, array $data):string{
+ $tag_len = strlen($tag) - 1;
+ $html = "";
+ $c = 0;
+
+ for($i = 0; $i < $filesize; $i++){
+ if($file[$i] == "<"){
+ $j = 0;
+ while($i + $j < $filesize && $file[$i + $j] == $tag[$j]){
+ if($j == $tag_len){
+ $html .= $data[$c];
+ $c++;
+ break;
+ }
+ $j++;
+ }
+ }
+ $html .= $file[$i];
+ }
+ return $html;
+ }
+ }
+}
+\ No newline at end of file
diff --git a/controller.php b/controller.php
@@ -0,0 +1,11 @@
+<?php
+include "Template.php";
+$uri = "template_test.html";
+$data = array( "<p> <h1>Het werkt</h1> </p>",
+ "<p> <h1>Het werkt</h1> </p>",
+ "<p> <h1>Het werkt</h1> </p>");
+
+$template = new Lollipop\Template;
+$html = $template->template($uri, $data);
+echo $html;
+?>
+\ No newline at end of file
diff --git a/template_test.html b/template_test.html
@@ -0,0 +1,14 @@
+<html>
+ <head>
+
+ </head>
+ <body>
+ <h1> dit is een testpagina</h1>
+ <p> template data nr1</p>
+ <template></template>
+ <p> template data nr2</p>
+ <template></template>
+ <p> template data nr3</p>
+ <template></template>
+ </body>
+</html>
+\ No newline at end of file
diff --git a/templating_php.zip b/templating_php.zip
Binary files differ.