Lines Matching refs:val
96 * @param string $val
100 function setRawMimeDirValue($val) { argument
102 $this->setValue(MimeDir::unescapeValue($val, $this->delimiter));
109 * @param string $val
113 function setQuotedPrintableValue($val) { argument
115 $val = quoted_printable_decode($val);
124 $matches = preg_split($regex, $val);
136 $val = $this->getParts();
139 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
142 foreach ($val as &$item) {
164 return implode($this->delimiter, $val);
213 $val = $this->getParts();
216 $val = array_pad($val, $this->minimumPropertyValues[$this->name], '');
221 if (count($val) > 1) {
222 foreach ($val as $k => $v) {
223 $val[$k] = str_replace(';', '\;', $v);
225 $val = implode(';', $val);
227 $val = $val[0];
245 if (strpos($val, "\n") !== false) {
255 for ($ii = 0;$ii < strlen($val);$ii++) {
256 $ord = ord($val[$ii]);
259 $lastLine .= $val[$ii];
261 $lastLine .= '=' . strtoupper(bin2hex($val[$ii]));
274 $str .= ':' . $val;