dfb9dbaa0829152a09d6f21573c4eff7daafe40d
[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         require_once 'Pman/Core/Images.php';
11         Pman_Core_Images::replaceImg('
12                 <img src="http://test.php/Core/Images/Thumb/200x40/34/test.png">
13                 <img src="http://test.php/Images/34/test.png" width="100">
14                 <a href="http://test.php/Images/Download/34/test.png">test</a>
15                 
16         ');
17         
18      }
19      function output()
20      {
21         exit;
22      }
23 }