-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPhpMinifier.phpclass
executable file
·67 lines (49 loc) · 2.41 KB
/
PhpMinifier.phpclass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**************************************************************************************************************
NAME
PhpMinifier.phpclass
DESCRIPTION
Minifier for php sources.
Note that this class has only been provided for consistency with the CssMinifier and JavascriptMinifier
ones. However it does not use the mechanisms provided by the Minifier abstract class, but simply calls
the php_strip_whitespace() function.
AUTHOR
Christian Vigh, 07/2016.
HISTORY
[Version : 1.0] [Date : 2016/07/13] [Author : CV]
Initial version.
**************************************************************************************************************/
require_once ( dirname ( __FILE__ ) . "/Minifier.phpclass" ) ;
/*==============================================================================================================
PhpMinifier class -
Minifier for javascript sources.
==============================================================================================================*/
class PhpMinifier extends Minifier
{
/*--------------------------------------------------------------------------------------------------------------
Constructor -
Initializes the parent minifier class.
*-------------------------------------------------------------------------------------------------------------*/
public function __construct ( )
{
parent::__construct ( ) ;
}
/*--------------------------------------------------------------------------------------------------------------
MinifyData -
Process the input stream.
Since the php_strip_whitespace() function only accepts the name of an existing file, we have to write
the contents to a temporary file, whatever the origin of the contents (even if they come from an
existing file).
This is a dirty solution but it wil always be faster than parsing the php source by ourselves...
*-------------------------------------------------------------------------------------------------------------*/
protected function MinifyData ( )
{
$fp = tmpfile ( ) ;
fwrite ( $fp, $this -> Content ) ;
$info = stream_get_meta_data ( $fp ) ;
$path = $info [ 'uri' ] ;
$contents = php_strip_whitespace ( $path ) ;
fclose ( $fp ) ; // Removes the temporary file
return ( $contents ) ;
}
}