Exemplo n.º 1
0
 /**
  * Enter description here...
  *
  * @param \PhpQueryObject $self
  */
 public static function example($self, $arg1)
 {
     // this method can be called on any PhpQuery object, like this:
     // pq('div')->example('$arg1 Value')
     // do something
     $self->append('Im just an example !');
     // change stack of result object
     return $self->find('div');
 }