Home
last modified time | relevance | path

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

123

/PHP-5.5/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_variation2.phpt5 /* Prototype : float log ( float $arg [, float $base ] )
10 echo "*** Testing log() : usage variations ***\n";
82 var_dump(log(3.14, $input));
89 *** Testing log() : usage variations ***
93 Warning: log(): base must be greater than 0 in %s on line %d
104 Warning: log(): base must be greater than 0 in %s on line %d
115 Warning: log(): base must be greater than 0 in %s on line %d
129 Warning: log(): base must be greater than 0 in %s on line %d
134 Warning: log(): base must be greater than 0 in %s on line %d
142 Warning: log(): base must be greater than 0 in %s on line %d
[all …]
H A Dlog_variation1.phpt2 Test log() function : usage variations - different data types as $arg argument
5 /* Prototype : float log ( float $arg [, float $base ] )
10 echo "*** Testing log() : usage variations ***\n";
78 // loop through each element of $inputs to check the behaviour of log()
82 var_dump(log($input, 10));
89 *** Testing log() : usage variations ***
141 Warning: log() expects parameter 1 to be double, string given in %s on line %d
146 Warning: log() expects parameter 1 to be double, string given in %s on line %d
151 Warning: log() expects parameter 1 to be double, array given in %s on line %d
156 Warning: log() expects parameter 1 to be double, string given in %s on line %d
[all …]
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-5.5/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");
/PHP-5.5/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);
/PHP-5.5/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-5.5/
H A D.gitignore56 config.log
71 debug.log
122 tests/*/*.log
128 */tests/*.log
134 */tests/*/*.log
140 */*/tests/*.log
146 */*/tests/*/*.log
170 ext/mbstring/libmbfl/autoscan.log
/PHP-5.5/sapi/fpm/tests/
H A D003.phpt10 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
51 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
/PHP-5.5/ext/mbstring/libmbfl/
H A DMakefile.am7 CLEANFILES=*.log *.sum
/PHP-5.5/ext/imap/
H A Dconfig.m466 Add --with-kerberos to your configure line. Check config.log for details.
83 Check the path given to --with-openssl-dir and output in config.log)
90 Add --with-imap-ssl to your configure line. Check config.log for details.
164 …nature, but U8T_CANONICAL is missing. This should not happen. Check config.log for additional info…
167 …nature, but U8T_CANONICAL is present. This should not happen. Check config.log for additional info…
276 AC_MSG_ERROR([build test failed. Please check the config.log for details.])
/PHP-5.5/ext/standard/
H A Dmath.c222 return(log(z + sqrt(1 + pow(z, 2))) / log(M_E)); in php_asinh()
234 return(log(x + sqrt(x * x - 1))); in php_acosh()
246 return(0.5 * log((1 + z) / (1 - z))); in php_atanh()
258 return(log(1 + x)); in php_log1p()
697 PHP_FUNCTION(log) in PHP_FUNCTION() argument
705 RETURN_DOUBLE(log(num)); in PHP_FUNCTION()
714 RETURN_DOUBLE(log(num) / log(base)); in PHP_FUNCTION()
/PHP-5.5/scripts/dev/
H A Dphpextdist16 config.log libtool php_config.h config_vars.mk Makefile
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in27 ; Error log file
31 ; Default Value: log/php-fpm.log
32 ;error_log = log/php-fpm.log
134 ; - 'access.log'
374 ; The access log file
376 ;access.log = log/$pool.access.log
378 ; The access log format.
425 ; %T: time the log has been written (the request has finished)
433 ; The log file for slow requests
436 ;slowlog = log/$pool.log.slow
[all …]
H A DMakefile.frag9 @$(mkinstalldirs) $(INSTALL_ROOT)$(localstatedir)/log
/PHP-5.5/ext/pdo_mysql/
H A Dphp_pdo_mysql_int.h42 #define PDO_DBG_INF(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg…
43 #define PDO_DBG_ERR(msg) do { if (dbg_skip_trace == FALSE) PDO_MYSQL_G(dbg)->m->log(PDO_MYSQL_G(dbg…
/PHP-5.5/ext/standard/tests/network/
H A Dsyslog_basic-win32.phpt11 * Description: Generate a system log message
/PHP-5.5/ext/openssl/
H A Dconfig0.m427 AC_MSG_ERROR([OpenSSL check failed. Please check config.log for more information.])
/PHP-5.5/Zend/tests/
H A Dbug42143.phpt18 var_dump(log10(-1) == log(-1));
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_debug.h33 enum_func_status (*log)(MYSQLND_DEBUG * self, unsigned int line, const char * const file, member
99 #define DBG_INF_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log(…
100 #define DBG_ERR_EX(dbg_obj, msg) do { if (dbg_skip_trace == FALSE && (dbg_obj)) (dbg_obj)->m->log(…
/PHP-5.5/ext/gd/
H A Dconfig.m492 AC_MSG_ERROR([Problem with libvpx.(a|so). Please check config.log for more information.])
117 AC_MSG_ERROR([Problem with libjpeg.(a|so). Please check config.log for more information.])
147 …AC_MSG_ERROR([Problem with libpng.(a|so) or libz.(a|so). Please check config.log for more informat…
175 …AC_MSG_ERROR([Problem with libXpm.(a|so) or libX11.(a|so). Please check config.log for more inform…
229 AC_MSG_ERROR([Problem with libt1.(a|so). Please check config.log for more information.])
385 AC_MSG_ERROR([GD build test failed. Please check the config.log for details.])
392 AC_MSG_ERROR([GD build test failed. Please check the config.log for details.])
/PHP-5.5/ext/interbase/
H A Dconfig.m426 …AC_MSG_ERROR([libgds, libib_util or libfbclient not found! Check config.log for more information.])

Completed in 32 milliseconds

123