本文整理汇总了PHP中SimpleSocket::getError方法的典型用法代码示例。如果您正苦于以下问题:PHP SimpleSocket::getError方法的具体用法?PHP SimpleSocket::getError怎么用?PHP SimpleSocket::getError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SimpleSocket
的用法示例。
在下文中一共展示了SimpleSocket::getError方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testBadSocket
public function testBadSocket()
{
$socket = new SimpleSocket('bad_url', 111, 5);
$this->assertTrue($socket->isError());
$this->assertPattern('/Cannot open \\[bad_url:111\\] with \\[/', $socket->getError());
$this->assertFalse($socket->isOpen());
$this->assertFalse($socket->write('A message'));
}
示例2: invoke
function invoke($method)
{
ob_start();
parent::invoke($method);
$output = ob_get_contents();
ob_end_clean();
$sock = new SimpleSocket("127.0.0.1", $this->_port, 5);
$sock->write($output);
$sock->close();
echo $sock->getError();
}
示例3: testSocket
function testSocket()
{
$socket = new SimpleSocket("www.lastcraft.com", 80);
$this->assertFalse($socket->isError(), "Error [" . $socket->getError() . "]");
$this->assertTrue($socket->isOpen());
$this->assertTrue($socket->write("GET www.lastcraft.com/test/network_confirm.php HTTP/1.0\r\n"));
$socket->write("Host: localhost\r\n");
$socket->write("Connection: close\r\n\r\n");
$this->assertEqual($socket->read(8), "HTTP/1.1");
$socket->close();
$this->assertEqual($socket->read(8), "");
}
示例4: run
/**
* Runs the test methods in the test case, or not if the
* scorer blocks it.
* @param SimpleTest $test_case Test case to run test on.
* @param string $method Name of test method.
* @access public
*/
function run()
{
$methods = get_class_methods(get_class($this->_test_case));
$invoker =& $this->_test_case->createInvoker();
foreach ($methods as $method) {
if (!$this->_isTest($method)) {
continue;
}
if ($this->_isConstructor($method)) {
continue;
}
ob_start();
echo $this->_start;
$this->_scorer->paintMethodStart($method);
if ($this->_scorer->shouldInvoke($this->_test_case->getLabel(), $method)) {
$invoker->invoke($method);
}
$this->_scorer->paintMethodEnd($method);
echo $this->_end;
$output = ob_get_contents();
ob_end_clean();
$sock = new SimpleSocket("127.0.0.1", $this->_port, 5);
$sock->write($output);
$sock->close();
echo $sock->getError();
}
}