Snoopy::fetchform()
Метод класса: Snoopy{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Snoopy = new Snoopy(); $Snoopy->fetchform( $URI );
- $URI (обязательный)
- -
Код Snoopy::fetchform() Snoopy::fetchform WP 6.7.1
function fetchform($URI) { if ($this->fetch($URI)) { if(is_array($this->results)) { for($x=0;$x<count($this->results);$x++) $this->results[$x] = $this->_stripform($this->results[$x]); } else $this->results = $this->_stripform($this->results); return true; } else return false; }