MediaWiki REL1_33
ReplacementArray.php
Go to the documentation of this file.
1<?php
25 private $data = [];
26
32 public function __construct( array $data = [] ) {
33 $this->data = $data;
34 }
35
39 public function __sleep() {
40 return [ 'data' ];
41 }
42
47 public function setArray( array $data ) {
48 $this->data = $data;
49 }
50
54 public function getArray() {
55 return $this->data;
56 }
57
63 public function setPair( $from, $to ) {
64 $this->data[$from] = $to;
65 }
66
70 public function mergeArray( $data ) {
71 $this->data = $data + $this->data;
72 }
73
77 public function merge( ReplacementArray $other ) {
78 $this->data = $other->data + $this->data;
79 }
80
84 public function removePair( $from ) {
85 unset( $this->data[$from] );
86 }
87
91 public function removeArray( $data ) {
92 foreach ( $data as $from => $to ) {
93 $this->removePair( $from );
94 }
95 }
96
101 public function replace( $subject ) {
102 return strtr( $subject, $this->data );
103 }
104}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Wrapper around strtr() that holds replacements.
setPair( $from, $to)
Set an element of the replacement array.
__construct(array $data=[])
Create an object with the specified replacement array The array should have the same form as the repl...
setArray(array $data)
Set the whole replacement array at once.
merge(ReplacementArray $other)
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))