Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > c611db0118ea1ea9c08410830de861fa > files > 12

php-shout-0.9.2-18mdv2010.0.i586.rpm

--TEST--
shout_connect (persistent)
--SKIPIF--
<?php
include 'skipif.inc';
?>
--FILE--
<?php
include 'connect.inc';
$test = '';

$link = shout_pcreate($host.':'.$port.$mount, $user, $passwd);

$result = shout_set_name($link, "phpShout test");
$test .= ($result == SHOUTERR_SUCCESS) ? '1' : '0';

$result = shout_set_agent($link, "PHP SAPI CLI");
$test .= ($result == SHOUTERR_SUCCESS) ? '1' : '0';

$result = shout_set_description($link, "This is TEST #003 of the phpShout extension");
$test .= ($result == SHOUTERR_SUCCESS) ? '1' : '0';

$result = shout_connect($link);
$test .= ($result == SHOUTERR_SUCCESS) ? '1' : '0';

shout_close($link);

var_dump($test);

?>
--EXPECT--
string(4) "1111"