Home
last modified time | relevance | path

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

12345

/PHP-7.0/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 float, string given in %s on line %d
146 Warning: log() expects parameter 1 to be float, string given in %s on line %d
151 Warning: log() expects parameter 1 to be float, array given in %s on line %d
156 Warning: log() expects parameter 1 to be float, 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));
/PHP-7.0/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-7.0/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-7.0/
H A D.gitignore57 config.log
72 debug.log
123 tests/*/*.log
129 tests/*/*/*.log
135 */tests/*.log
141 */tests/*/*.log
147 */tests/*/*/*.log
154 */*/tests/*.log
160 */*/tests/*/*.log
166 */*/tests/*/*/*.log
[all …]
/PHP-7.0/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.0/sapi/fpm/tests/
H A D019.phpt10 $logfile = 'php-fpm.log.tmp';
22 access.log = $accfile
61 File php-fpm.log.tmp exists
71 $logfile = __DIR__.'/php-fpm.log.tmp';
H A D007.phpt13 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
22 access.log = $accfile
67 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D013.phpt10 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
52 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D020.phpt11 $logfile = __DIR__.'/php-fpm.log.tmp';
24 access.log = $accfile
67 $logfile = __DIR__.'/php-fpm.log.tmp';
H A D002.phpt10 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
49 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D014.phpt10 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
52 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D003.phpt13 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
52 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D011.phpt10 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
51 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D009.phpt10 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
51 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D004.phpt13 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
60 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D005.phpt13 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
58 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D006.phpt13 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
58 $logfile = dirname(__FILE__).'/php-fpm.log.tmp';
H A D017.phpt10 $logfile = __DIR__.'/php-fpm.log.tmp';
63 $logfile = __DIR__.'/php-fpm.log.tmp';
/PHP-7.0/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
/PHP-7.0/ext/standard/
H A Dmath.c231 return log(z + sqrt(z * z + 1)); in php_asinh()
234 return -log(-z + sqrt(z * z + 1)); in php_asinh()
237 return(log(z + sqrt(1 + pow(z, 2))) / log(M_E)); in php_asinh()
252 return log(x + sqrt(x * x - 1)); in php_acosh()
257 return(log(x + sqrt(x * x - 1))); in php_acosh()
270 return(0.5 * log((1 + z) / (1 - z))); in php_atanh()
282 return(log(1 + x)); in php_log1p()
697 PHP_FUNCTION(log) in PHP_FUNCTION() argument
708 RETURN_DOUBLE(log(num)); in PHP_FUNCTION()
730 RETURN_DOUBLE(log(num) / log(base)); in PHP_FUNCTION()

Completed in 27 milliseconds

12345