summaryrefslogtreecommitdiff
path: root/ext/standard/tests/network/syslog_basic.phpt
blob: 973fa958442baa2b5a8def46a8aad1c530f65e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Test syslog() function : basic functionality
--FILE--
<?php
/* Prototype  : bool syslog(int priority, string message)
 * Description: Generate a system log message 
 * Source code: ext/standard/syslog.c
 * Alias to functions:
 */

echo "*** Testing syslog() : basic functionality ***\n";


// Initialise all required variables
$priority = LOG_WARNING;
$message = 'A test syslog call invocation';

// Calling syslog() with all possible arguments
var_dump( syslog($priority, $message) );

?>
===DONE===
--EXPECT--
*** Testing syslog() : basic functionality ***
bool(true)
===DONE===