aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty/libraries/MOBIClass/FileByte.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2014-12-22 14:33:01 +0100
committerThomas Citharel <tcit@tcit.fr>2014-12-22 14:33:01 +0100
commitf3917b1ee4bba812e82da57dd181f50d62926db4 (patch)
treecb4b04931e97e4a69500bf9d7aa5c21985cab59e /inc/3rdparty/libraries/MOBIClass/FileByte.php
parent311baf86befde0557faea614ca4d13bb2bd2cc66 (diff)
parent9254b6cf460edec3a59e9ccc19873481a1d19c90 (diff)
downloadwallabag-f3917b1ee4bba812e82da57dd181f50d62926db4.tar.gz
wallabag-f3917b1ee4bba812e82da57dd181f50d62926db4.tar.zst
wallabag-f3917b1ee4bba812e82da57dd181f50d62926db4.zip
Merge branch 'dev' into randomarticle
Diffstat (limited to 'inc/3rdparty/libraries/MOBIClass/FileByte.php')
-rw-r--r--inc/3rdparty/libraries/MOBIClass/FileByte.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/inc/3rdparty/libraries/MOBIClass/FileByte.php b/inc/3rdparty/libraries/MOBIClass/FileByte.php
new file mode 100644
index 00000000..05fc7d04
--- /dev/null
+++ b/inc/3rdparty/libraries/MOBIClass/FileByte.php
@@ -0,0 +1,41 @@
1<?php
2
3/**
4 * Description of FileByte
5 *
6 * @author Sander
7 */
8class FileByte extends FileObject {
9 private $data;
10
11 /**
12 * Make a short to be stored in a file
13 * @param short $n
14 */
15 public function __construct($n = 0){
16 parent::__construct(1);
17 $this->set($n);
18 }
19
20 public function get(){
21 return $this->data;
22 }
23
24 public function set($value){
25 $this->data = intval($value) & 0xFF;
26 }
27
28 public function serialize() {
29 return $this->byteToString($this->data);
30 }
31
32 public function unserialize($data) {
33 __construct($this->toInt($data));
34 }
35
36
37 public function __toString(){
38 return "FileByte: {".$this->byteAsString($this->data)."}";
39 }
40}
41?>