1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace PhpXmlRpc\Helper; |
4
|
|
|
|
5
|
|
|
class Logger |
6
|
|
|
{ |
7
|
|
|
protected static $instance = null; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* This class is singleton, so that later we can move to DI patterns. |
11
|
|
|
* |
12
|
|
|
* @return Logger |
13
|
|
|
*/ |
14
|
44 |
|
public static function instance() |
15
|
|
|
{ |
16
|
44 |
|
if (self::$instance === null) { |
17
|
43 |
|
self::$instance = new self(); |
18
|
|
|
} |
19
|
|
|
|
20
|
44 |
|
return self::$instance; |
21
|
|
|
} |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Echoes a debug message, taking care of escaping it when not in console mode. |
25
|
|
|
* NB: if the encoding of the message is not known or wrong, and we are working in web mode, there is no guarantee |
26
|
|
|
* of 100% accuracy, which kind of defeats the purpose of debugging |
27
|
|
|
* |
28
|
|
|
* @param string $message |
29
|
|
|
* @param string $encoding |
30
|
|
|
*/ |
31
|
3 |
|
public function debugMessage($message, $encoding = null) |
32
|
|
|
{ |
33
|
|
|
// US-ASCII is a warning for PHP and a fatal for HHVM |
34
|
3 |
|
if ($encoding == 'US-ASCII') { |
35
|
|
|
$encoding = 'UTF-8'; |
36
|
|
|
} |
37
|
|
|
|
38
|
3 |
|
if (PHP_SAPI != 'cli') { |
39
|
3 |
|
$flags = ENT_COMPAT; |
40
|
|
|
// avoid warnings on php < 5.4... |
41
|
3 |
|
if (defined('ENT_HTML401')) { |
42
|
3 |
|
$flags = $flags | ENT_HTML401; |
43
|
|
|
} |
44
|
3 |
|
if (defined('ENT_SUBSTITUTE')) { |
45
|
3 |
|
$flags = $flags | ENT_SUBSTITUTE; |
46
|
|
|
} |
47
|
3 |
|
if ($encoding != null) { |
|
|
|
|
48
|
3 |
|
print "<PRE>\n".htmlentities($message, $flags, $encoding)."\n</PRE>"; |
49
|
|
|
} else { |
50
|
3 |
|
print "<PRE>\n".htmlentities($message, $flags)."\n</PRE>"; |
51
|
|
|
} |
52
|
|
|
} else { |
53
|
|
|
print "\n$message\n"; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
// let the user see this now in case there's a time out later... |
57
|
3 |
|
flush(); |
58
|
3 |
|
} |
59
|
|
|
|
60
|
|
|
/** |
61
|
|
|
* Writes a message to the error log |
62
|
|
|
*/ |
63
|
41 |
|
public function errorLog($message) |
64
|
|
|
{ |
65
|
41 |
|
error_log($message); |
66
|
41 |
|
} |
67
|
|
|
} |
68
|
|
|
|