-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAmslib_Apache.php
executable file
·78 lines (70 loc) · 2.08 KB
/
Amslib_Apache.php
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
68
69
70
71
72
73
74
75
76
77
78
<?php
/*******************************************************************************
* Copyright (c) {15/03/2008} {Christopher Thomas}
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Contributors/Author:
* {Christopher Thomas} - Creator - [email protected]
*
*******************************************************************************/
/**
* class: Amslib_Apache
*
* group: core
*
* file: Amslib_Apache.php
*
* description: todo, write description
*
* todo: write documentation
*
*/
class Amslib_Apache
{
protected $headers;
protected $boundary;
/**
* method: __construct
*
* todo: write documentation
*/
public function __construct()
{
// Request apache headers, so you can find the content length, etc
$this->headers = apache_request_headers();
$this->boundary = false;
}
public function getContentLength()
{
$cl = "Content-Length";
return isset($this->headers[$cl])
? $this->headers[$cl]
: 0;
}
public function getContentBoundary()
{
$ct = "Content-Type";
$this->boundary = false;
if(isset($this->headers[$ct]) && strpos($this->headers[$ct],"boundary")){
// Extract boundary from content type header
$this->boundary = $this->headers[$ct];
$this->boundary = explode(";",$this->boundary);
$this->boundary = $this->boundary[1];
$this->boundary = explode("=",$this->boundary);
$this->boundary = trim($this->boundary[1]);
}
return $this->boundary;
}
}