JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
factored out read_whole_file into basics.php
authorJason Woofenden <jason@vorticies.(none)>
Sun, 10 Dec 2006 09:21:23 +0000 (04:21 -0500)
committerJason Woofenden <jason@vorticies.(none)>
Sun, 10 Dec 2006 09:21:23 +0000 (04:21 -0500)
basics.php [new file with mode: 0644]
template.php

diff --git a/basics.php b/basics.php
new file mode 100644 (file)
index 0000000..3a60248
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+function read_whole_file($name) {
+       $fd = fopen($name, 'r');
+       if($fd === false) {
+               die("Failed to read file: '$name'");
+       }
+       $temp = fread($fd, filesize($name));
+       fclose($fd);
+       return $temp;
+}
+
+?>
index c56e743..897afc7 100644 (file)
@@ -34,6 +34,7 @@
 # including the use of sub-templates can be found in tem_test.php
 
 require_once('code/wfpl/encode.php');
+require_once('code/wfpl/basics.php');
 
 class tem {
        var $keyval;        # an array containing key/value pairs 
@@ -184,16 +185,6 @@ function tem_output($filename = false) {
 
 
 
-function read_whole_file($name) {
-       $fd = fopen($name, 'r');
-       if($fd === false) {
-               die("Failed to read file: '$name'");
-       }
-       $temp = fread($fd, filesize($name));
-       fclose($fd);
-       return $temp;
-}
-
 # this is used in template_run() and should be of no other use
 function template_filler($matches) {
        list($tag, $enc) = explode('.', $matches[1], 2);