commit 2edc648a2c0420efbdfeb295f64f7e4791dc8b89
parent fc49a3865756d771bc93cc9cb4ce9b1a8116b30f
Author: Friedel Schön <[email protected]>
Date: Tue, 30 May 2023 11:59:17 +0200
Merge remote-tracking branch 'template/main'
Diffstat:
3 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