Home
last modified time | relevance | path

Searched refs:log (Results 1 – 25 of 83) sorted by relevance

1234

/PHP-7.4/ext/standard/tests/math/
H A Dlog_error.phpt2 Test log() - wrong params test log()
7 log();
8 log(36,4,true);
9 log(36, -4);
12 Warning: log() expects at least 1 parameter, 0 given in %s on line %d
14 Warning: log() expects at most 2 parameters, 3 given in %s on line %d
16 Warning: log(): base must be greater than 0 in %s on line %d
H A Dlog.phpt2 log() tests
7 $x2 = (int) exp(log($x));
8 // e ^ log(x) should be close in range to x
17 // Now test the base form of log
20 $x2 = (int) pow($base, log($x, $base));
21 // base ^ log(x) should be close in range to x
H A Dlog_basic.phpt2 Test log() - basic function test log()
22 $res = log($values[$i]);
28 $res = log($values[$i], 4);
H A Dlog_basiclong_64bit.phpt2 Test log function : 64bit long tests
24 var_dump(log($longVal));
H A Dbug25665.phpt12 var_dump(log(0));
/PHP-7.4/ext/standard/tests/mail/
H A Dmail_log.phpt2 Test mail() function : mail.log ini setting
5 mail.log = /tmp/mail.log
15 $logfile = ini_get("mail.log");
23 $subject = "mail.log test";
24 $message = "Testing mail.log";
40 unlink("/tmp/mail.log");
47 …mail() on [%smail_log.php:%d]: To: test@example.com -- Headers: X-Test: 1 -- Subject: mail.log test
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug60723.phpt9 $log = $dir . "/tmp.err";
10 ini_set("error_log", $log);
13 readfile($log);
14 unlink($log);
H A Dbug70249.phpt11 // make sure log entries written by shutdown functions are also flushed
/PHP-7.4/ext/standard/tests/serialize/
H A Dbug62373.phpt8 $size_of_ce = (((int)(log(PHP_INT_MAX) / log(2)) + 1 == 32 ? 368: 680) + 15) & ~15;
/PHP-7.4/ext/skeleton/
H A D.gitignore.in11 config.log
34 tests/*/*.log
/PHP-7.4/sapi/fpm/
H A Dphp-fpm.conf.in19 ; Error log file
20 ; If it's set to "syslog", log is sent to syslogd instead of being written
23 ; Default Value: log/php-fpm.log
24 ;error_log = log/php-fpm.log
44 ; Log limit on number of characters in the single line (log entry). If the
53 ; Log buffering specifies if the log line is buffered which means that the
H A Dwww.conf.in8 ; - 'access.log'
258 ; The access log file
260 ;access.log = log/$pool.access.log
262 ; The access log format.
311 ; %T: time the log has been written (the request has finished)
321 ; The log file for slow requests
324 ;slowlog = log/$pool.log.slow
332 ; Depth of slow log stack trace.
376 ; Redirect worker stdout and stderr into main error log. If not set, stdout and
384 ; the child that writes to the log and if stdout or stderr is used as well as
[all …]
H A DMakefile.frag9 @$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/log
/PHP-7.4/ext/standard/
H A Dmath.c218 return log(z + sqrt(z * z + 1)); in php_asinh()
221 return -log(-z + sqrt(z * z + 1)); in php_asinh()
224 return(log(z + sqrt(1 + pow(z, 2))) / log(M_E)); in php_asinh()
239 return log(x + sqrt(x * x - 1)); in php_acosh()
244 return(log(x + sqrt(x * x - 1))); in php_acosh()
257 return(0.5 * log((1 + z) / (1 - z))); in php_atanh()
269 return(log(1 + x)); in php_log1p()
688 PHP_FUNCTION(log) in PHP_FUNCTION() argument
699 RETURN_DOUBLE(log(num)); in PHP_FUNCTION()
721 RETURN_DOUBLE(log(num) / log(base)); in PHP_FUNCTION()
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc19 * File extension for access log.
21 const FILE_EXT_LOG_ACC = 'acc.log';
24 * File extension for error log.
29 * File extension for slow log.
739 * Get a single log line
756 * Get log lines
1332 * Expect log entry.
1364 * Expect a log notice.
1377 * Expect a log warning.
1390 * Expect a log error.
[all …]
H A Dlog-bwd-limit-1050-msg-2900.phpt2 FPM: Buffered worker output decorated log with limit 1050 with 2900 msg
H A Dlog-bwd-limit-64-too-low-error.phpt2 FPM: Buffered worker output decorated log with limit 64 fails because it is too low
H A Dlog-bwd-limit-8000-msg-4096.phpt2 FPM: Buffered worker output decorated log with limit 8000 with 4096 msg
H A Dlog-dwd-limit-1050-msg-2900.phpt2 FPM: Direct worker output decorated log with limit 1050 with 2900 msg
H A Dlog-dwd-limit-8000-msg-4096.phpt2 FPM: Direct worker output decorated log with limit 8000 with 4096 msg
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.init.d22 LOGFILE=/var/log/phpdbg.log
/PHP-7.4/ext/standard/tests/network/
H A Dsyslog_basic.phpt6 * Description: Generate a system log message
/PHP-7.4/Zend/tests/
H A Dbug73954.phpt12 takes_int(log(tan(3.14)));
/PHP-7.4/ext/imap/
H A Dconfig.m459 Add --with-kerberos to your configure line. Check config.log for details.
76 Check whether openssl is on your PKG_CONFIG_PATH and the output in config.log)
83 Add --with-imap-ssl to your configure line. Check config.log for details.
165 …nature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional info…
168 …nature, but U8T_CANONICAL is present. This should not happen. Check config.log for additional info…
282 AC_MSG_ERROR([build test failed. Please check the config.log for details.])
/PHP-7.4/ext/pdo_mysql/
H A Dphp_pdo_mysql_int.h43 #define PDO_DBG_INF(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg…
44 #define PDO_DBG_ERR(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg…

Completed in 33 milliseconds

1234