WS (tab to space)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@333388 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Peter Cowburn 2014-04-21 19:25:21 +00:00
parent 74508ae0d2
commit e3b6a502d3
2 changed files with 6 additions and 6 deletions

View file

@ -111,8 +111,8 @@ $mysqli->query("INSERT INTO Language VALUES ('DEU', 'Swabian', 'F', 9.4)");
/* commit transaction */
if (!$mysqli->commit()) {
print("Transaction commit failed\n");
exit();
print("Transaction commit failed\n");
exit();
}
/* drop table */
@ -146,8 +146,8 @@ mysqli_query($link, "INSERT INTO Language VALUES ('DEU', 'Swabian', 'F', 9.4)");
/* commit transaction */
if (!mysqli_commit($link)) {
print("Transaction commit failed\n");
exit();
print("Transaction commit failed\n");
exit();
}
/* close connection */

View file

@ -66,8 +66,8 @@ function callback($retval, $callinfo) {
if ($callinfo == NULL) {
echo "Now, all requests are sent, and no any response available\n";
} else {
echo "This is a remote call response, the method name is", $callinfo["method"],
". calling sequence is " , $callinfo["sequence"] , "\n";
echo "This is a remote call response, the method name is", $callinfo["method"],
". calling sequence is " , $callinfo["sequence"] , "\n";
var_dump($retval);
}
}