-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileCodeInject.php
65 lines (61 loc) · 1.45 KB
/
fileCodeInject.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
<?php
/**
* Created by PhpStorm.
* User: LoicHa
* Date: 26/07/2017
* Time: 09:46
*/
class FileCodeInject
{
private $filename = false;
private $filenameContent = null;
function __construct($file)
{
if(file_exists($file))
{
$this->filename = $file;
$this->filenameContent = self::getContent();
return $this->filenameContent;
}
}
public function getContent()
{
return file_get_contents($this->filename);
}
public function injectCode($code, $find, $position = 'before', $append = true, $newline = true)
{
$newline = $newline ? PHP_EOL : '';
if(!$append)
{
file_put_contents($this->filename,$code);
$this->filenameContent = $code;
return;
}
if($position == 'top')
{
$this->filenameContent = $code.$newline.$this->filenameContent;
file_put_contents($this->filename,$this->filenameContent);
return;
}
if($position == 'bottom')
{
$this->filenameContent = $this->filenameContent.$newline.$code;
file_put_contents($this->filename,$this->filenameContent);
return;
}
if($find)
{
if($position == 'before')
{
$this->filenameContent = str_replace($find, $code . $newline . $find, $this->filenameContent);
file_put_contents($this->filename,$this->filenameContent);
return;
}
elseif($position == 'after')
{
$this->filenameContent = str_replace($find, $find. $newline .$code , $this->filenameContent);
file_put_contents($this->filename,$this->filenameContent);
}
}
}
}