Sample code for 30+ languages & platforms
PHP Extension

Restart Transfer-Rate Measurement

See more Socket/SSL/TLS Examples

Demonstrates Socket.ResetPerf, which restarts one direction of connection-level transfer-rate measurement.

Background. Pass true to reset the receive measurement (RcvBytesPerSec) or false to reset the send measurement (SendBytesPerSec).

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$success = false;

$socket = new CkSocket();

//  Connect to the server using TLS.
$bTls = true;
$maxWaitMs = 5000;
$success = $socket->Connect('example.com',5000,$bTls,$maxWaitMs);
if ($success == false) {
    print $socket->lastErrorText() . "\n";
    exit;
}

//  Restart one direction of transfer-rate measurement.  Pass true to reset the receive measurement
//  (RcvBytesPerSec) or false to reset the send measurement (SendBytesPerSec).
$bRcvPerf = true;
$socket->ResetPerf($bRcvPerf);
print 'Receive-rate measurement restarted.' . "\n";

?>