(&$srctab, $x, $y, $repl, $replLen = false)
| 97 | |
| 98 | class qrstr { |
| 99 | public static function set(&$srctab, $x, $y, $repl, $replLen = false) { |
| 100 | $srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl)); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 |
no outgoing calls
no test coverage detected