Searched refs:aIP (Results 1 – 2 of 2) sorted by relevance
| /plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/ |
| D | IPv6.php | 13 * @param string $aIP 18 public function validate($aIP, $config, $context) argument 24 $original = $aIP; 31 if (strpos($aIP, '/') !== false) { 32 if (preg_match('#' . $pre . '$#s', $aIP, $find)) { 33 $aIP = substr($aIP, 0, 0 - strlen($find[0])); 41 if (preg_match('#(?<=:' . ')' . $this->ip4 . '$#s', $aIP, $find)) { 42 $aIP = substr($aIP, 0, 0 - strlen($find[0])); 45 $aIP .= $ip[0] . $ip[1] . ':' . $ip[2] . $ip[3]; 50 $aIP = explode('::', $aIP); [all …]
|
| D | IPv4.php | 17 * @param string $aIP 22 public function validate($aIP, $config, $context) argument 28 if (preg_match('#^' . $this->ip4 . '$#s', $aIP)) { 29 return $aIP;
|