tests/Images.php
[Pman.Core] / tests / Images.php
1 <?php
2
3 require_once 'Pman.php';
4
5 class Pman_Core_tests_Images extends Pman
6 {
7      function get() {
8         // test...
9         echo '<PRE>';
10         Pman_Core_Images::replaceImg('
11                 <img src="http://test.php/Core/Images/Thumb/200x40/34/test.png">
12                 <img src="http://test.php/Images/34/test.png" width="100">
13                 <a href="http://test.php/Images/Download/34/test.png">test</a>
14                 
15         ');
16         
17      }
18      function output()
19      {
20         exit;
21      }
22 }