Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

wwwstores
golfing products
dropshippers

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


Get the connection time with PHP and cURL

Get the connection time with PHP and cURL

<?php
//google
$curl = curl_init('http://www.google.com/');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_exec($curl);
//get the connection time
print("Connection time: " . curl_getinfo($curl, CURLINFO_CONNECT_TIME) .'<br>');
?>