aboutsummaryrefslogtreecommitdiff
path: root/functions.php
blob: ec1ef282bebe99d49b2cfee42492c890c19bcd61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

function summarise($post) {
  $post = preg_replace('/(\r?\n|\t)/', " ", $post);
  $post = preg_replace('/"/', "&quot;", $post);
  $post = preg_replace('/<.*?>/', " ", $post);
  return substr($post, 0, 196) . "...";
}

function title() {
  require("title.php");
}

?>