Recommend this page to a friend! |
All requests ![]() |
> | custom search engine using phpp | > | Request new recommendation | > | ![]() |
> | ![]() |
by Vivek Tyagi - 7 years ago (2018-03-01)
+4 | custom search engine using php class |
1. by riccardo castagna - 6 years ago (2018-09-10) Reply
Do you need to build a new search engine or a php class that can use existing search engines to then customize the search results ?
+1 |
if do you need php class that use existing search engines to then customize the search results you can use the php cUrl extension and my very simple package in this way: include_once("./lib/class.curlmulti.php"); $ref= new cURmultiStable; $search="black roses"; $urllinkarray = array('h t t p s: / /w w w . g o o g l e . com ? q ='.$search, 'h t t p s: / /w w w . y a h o o . com ? q ='.$search, 'h t t p s: / /w w w . b i n g . com ? q ='.$search, 'h t t p s : / / d u c k d u c k g o . com / ? q ='.$search ); $urls = $ref->runmulticurl($urllinkarray); echo $urls[0]; // results from google echo $urls[1]; // results from yahoo echo $urls[2]; // results from bing echo $urls[3]; // results from duckduckgo than you will be able to manipulate the results |
Recommend package | |
|