From: "Jay Blanchard" on 19 Mar 2010 07:25 [snip] can any one give a complete sample script how to retrieve data content from web (jpg, pdf, field). [/snip] Your question is a little too far reaching. You can use string functions match portions of strings including tried and true regular expressions. What do you want to do, specifically?
From: Ashley Sheridan on 19 Mar 2010 07:24 On Fri, 2010-03-19 at 06:25 -0500, Jay Blanchard wrote: > [snip] > can any one give a complete sample script how to retrieve data content > from web (jpg, pdf, field). > [/snip] > > Your question is a little too far reaching. You can use string functions > match portions of strings including tried and true regular expressions. > > What do you want to do, specifically? I assume he wants to retrieve the files for a page as well. I'd recommend having PHP call wget on the shell, as that tool was built for this sort of thing. If you don't have access to wget, then you could use some sort of DOM or string manipulation to find out what files are used in a web page and then make separate requests via cURL to grab those, as file_get_contents() might not be totally reliable for this sort of thing. Thanks, Ash http://www.ashleysheridan.co.uk
From: Jochen Schultz on 19 Mar 2010 07:59 Maybe this code may help you getting into it? <?php class simpleHttpSocket { public function sendHttpRequest($host,$filename,$port=80,$timeout=1,$x=0,$result=array()) { $header = 'GET /'.$filename.' HTTP/1.1'.PHP_EOL; $header .= 'Host: '.$host.PHP_EOL; $header .= 'Connection: close'.PHP_EOL; $header .= 'User-Agent: Simple(php-general(a)lists.php.net)'.PHP_EOL; $header .= "Referer: http://test-server.tld/".PHP_EOL.PHP_EOL; $socket=(a)fsockopen($host, $port, &$errno, &$errstr, $timeout); $result[-1]=''; if (!$socket){ trigger_error('Connection timeout',E_USER_NOTICE); $result["errno"] = $errno; $result["errstr"] = $errstr; return $result; } fputs($socket, $header); while (!feof($socket)) { $result[$x++] = fgets($socket, 128); if (preg_match('/^Location:/',$result[$x-1])) { return $result[$x-1]; } flush(); } return $result; } } $post = new simpleHttpSocket; $host = 'www.example.com'; $filename = ''; // leave empty for index file or else: // $filename = 'image.jpg'; $file = $post->sendHttpRequest($host,$header,80,2); // Output while(list($k,$v)=each($file)) { echo $v.'<br/>'; } ?> regards Jochen madunix schrieb: > can any one give a complete sample script how to retrieve data content > from web (jpg, pdf, field). > > Thanks > > On Fri, Mar 19, 2010 at 9:53 AM, Jochen Schultz <jschultz(a)sportimport.de> wrote: >> Btw., when you use file_get_contets, is there a good way to tell the script >> to stop recieving the file after let's say 2 seconds - just in case the >> server is not reachable - to avoid using fsockopen? >> >> regards >> Jochen >> >> madunix schrieb: >>> okay ..it works now i use >>> <?php >>> $data=file_get_contents("http://www.my.com"); >>> echo $data; >>> ?> >>> >>> On Fri, Mar 19, 2010 at 12:32 AM, Adam Richardson <simpleshot(a)gmail.com> >>> wrote: >>>> On Thu, Mar 18, 2010 at 6:08 PM, Ashley Sheridan >>>> <ash(a)ashleysheridan.co.uk> >>>> wrote: >>>>> On Fri, 2010-03-19 at 00:11 +0200, madunix wrote: >>>>>> trying http://us3.php.net/manual/en/function.fsockopen.php >>>>>> do you a piece of code that read parts pages. >>>>>> >>>>>> >>>>>> On Fri, Mar 19, 2010 at 12:00 AM, Ashley Sheridan >>>>>> <ash(a)ashleysheridan.co.uk> wrote: >>>>>> >>>>>> >>>>>> On Fri, 2010-03-19 at 00:03 +0200, madunix wrote: >>>>>> >>>>>> > I've been trying to read the contents from a particular URL >>>>>> into a >>>>>> > string in PHP, and can't get it to work. any help. >>>>>> > >>>>>> > Thanks >>>>>> > >>>>>> > -- >>>>>> > If there is a way, I will find one...*** >>>>>> > If there is none, I will make one..."*** >>>>>> > **************** madunix ****************** >>>>>> > >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> How have you been trying to do it so far? >>>>>> >>>>>> There are a couple of ways. file_get_contents() and fopen() >>>>>> will work on URL's if the right ports are open. >>>>>> >>>>>> Most usually though cURL is used for this sort of thing. >>>>>> >>>>>> Thanks, >>>>>> Ash >>>>>> http://www.ashleysheridan.co.uk >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> If there is a way, I will find one...*** >>>>>> If there is none, I will make one..."*** >>>>>> **************** madunix ****************** >>>>>> >>>>>> >>>>> I think you're over-complicating things by using fsockopen(). Try one of >>>>> the functions I mentioned in my last email >>>>> >>>>> Thanks, >>>>> Ash >>>>> http://www.ashleysheridan.co.uk >>>>> >>>>> >>>> I agree with Ashley, use one of the other options and then parse the >>>> response to get the part of the page you'd like to work with. >>>> >>>> -- >>>> Nephtali: PHP web framework that functions beautifully >>>> http://nephtaliproject.com >>>> >>> >>> >> -- >> Sport Import GmbH - Amtsgericht Oldenburg - Tel: +49-4405-9280-63 >> Industriestrasse 39 - HRB 1202900 - >> 26188 Edewecht - GF: Michael Müllmann >> > > > -- Sport Import GmbH - Amtsgericht Oldenburg - Tel: +49-4405-9280-63 Industriestrasse 39 - HRB 1202900 - 26188 Edewecht - GF: Michael Müllmann
From: Jochen Schultz on 19 Mar 2010 08:03 Thanks alot! regards Jochen Peter Lind schrieb: > You should be able to do that by setting context options: > http://www.php.net/manual/en/context.http.php > > On 19 March 2010 08:53, Jochen Schultz <jschultz(a)sportimport.de> wrote: >> Btw., when you use file_get_contets, is there a good way to tell the script >> to stop recieving the file after let's say 2 seconds - just in case the >> server is not reachable - to avoid using fsockopen? >> >> regards >> Jochen >> >> madunix schrieb: >>> okay ..it works now i use >>> <?php >>> $data=file_get_contents("http://www.my.com"); >>> echo $data; >>> ?> >>> >>> On Fri, Mar 19, 2010 at 12:32 AM, Adam Richardson <simpleshot(a)gmail.com> >>> wrote: >>>> On Thu, Mar 18, 2010 at 6:08 PM, Ashley Sheridan >>>> <ash(a)ashleysheridan.co.uk> >>>> wrote: >>>>> On Fri, 2010-03-19 at 00:11 +0200, madunix wrote: >>>>>> trying http://us3.php.net/manual/en/function.fsockopen.php >>>>>> do you a piece of code that read parts pages. >>>>>> >>>>>> >>>>>> On Fri, Mar 19, 2010 at 12:00 AM, Ashley Sheridan >>>>>> <ash(a)ashleysheridan.co.uk> wrote: >>>>>> >>>>>> >>>>>> On Fri, 2010-03-19 at 00:03 +0200, madunix wrote: >>>>>> >>>>>> > I've been trying to read the contents from a particular URL >>>>>> into a >>>>>> > string in PHP, and can't get it to work. any help. >>>>>> > >>>>>> > Thanks >>>>>> > >>>>>> > -- >>>>>> > If there is a way, I will find one...*** >>>>>> > If there is none, I will make one..."*** >>>>>> > **************** madunix ****************** >>>>>> > >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> How have you been trying to do it so far? >>>>>> >>>>>> There are a couple of ways. file_get_contents() and fopen() >>>>>> will work on URL's if the right ports are open. >>>>>> >>>>>> Most usually though cURL is used for this sort of thing. >>>>>> >>>>>> Thanks, >>>>>> Ash >>>>>> http://www.ashleysheridan.co.uk >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> If there is a way, I will find one...*** >>>>>> If there is none, I will make one..."*** >>>>>> **************** madunix ****************** >>>>>> >>>>>> >>>>> I think you're over-complicating things by using fsockopen(). Try one of >>>>> the functions I mentioned in my last email >>>>> >>>>> Thanks, >>>>> Ash >>>>> http://www.ashleysheridan.co.uk >>>>> >>>>> >>>> I agree with Ashley, use one of the other options and then parse the >>>> response to get the part of the page you'd like to work with. >>>> >>>> -- >>>> Nephtali: PHP web framework that functions beautifully >>>> http://nephtaliproject.com >>>> >>> >>> >> -- >> Sport Import GmbH - Amtsgericht Oldenburg - Tel: +49-4405-9280-63 >> Industriestrasse 39 - HRB 1202900 - >> 26188 Edewecht - GF: Michael Müllmann >> >> -- >> PHP General Mailing List (http://www.php.net/) >> To unsubscribe, visit: http://www.php.net/unsub.php >> >> > > > -- Sport Import GmbH - Amtsgericht Oldenburg - Tel: +49-4405-9280-63 Industriestrasse 39 - HRB 1202900 - 26188 Edewecht - GF: Michael Müllmann
From: Rene Veerman on 19 Mar 2010 08:40 "field"? On Fri, Mar 19, 2010 at 9:46 AM, madunix <madunix(a)gmail.com> wrote: > can any one give a complete sample script how to retrieve data content > from web (jpg, pdf, field). >
First
|
Prev
|
Next
|
Last
Pages: 1 2 3 4 Prev: Remote Desktop Management Next: Example of good PHP namespace usage? |