2017 © Pedro Peláez
 

library search

Grants useful access way for search results from search engines like Google

image

virm/search

Grants useful access way for search results from search engines like Google

  • Thursday, December 13, 2012
  • by rybak_vlm
  • Repository
  • 0 Watchers
  • 0 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Search results iterator

install:

By Composer:

Install composer http://getcomposer.org to your project root;

create composer.json and add something like following:
{
    "require": {
        "virm/search": "dev-master"
    },
    "require-dev": {
        "phpunit/phpunit": "3.7.*"
    },
    "autoload": {
        "psr-0": {"Virm\\Search": ""}
    }
}

run:
    php composer.phar install
    php composer.phar update
for installing dependencies. (symfony dom_crawler, css_selector components)

Usage:

getCount();

        foreach($search as $k => $result) {
            echo $result->getTitle();
            echo $result->getDescription();
            echo $result->getLink();
        }

        echo $search[23];
    ?>

The Versions

13/12 2012

dev-master

9999999-dev https://github.com/virm/search

Grants useful access way for search results from search engines like Google

  Sources   Download

MIT

The Requires

 

by Vitali Rybak