14,958
edits
m (→PHP) |
(→PHP) |
||
| Line 96: | Line 96: | ||
* [http://php.net/manual/en/function.error-log.php PHP: error_log - Manual] | * [http://php.net/manual/en/function.error-log.php PHP: error_log - Manual] | ||
* [http://stackoverflow.com/questions/139474/how-can-i-capture-the-result-of-var-dump-to-a-string php - How can I capture the result of var_dump to a string? - Stack Overflow] | * [http://stackoverflow.com/questions/139474/how-can-i-capture-the-result-of-var-dump-to-a-string php - How can I capture the result of var_dump to a string? - Stack Overflow] | ||
<pre> | |||
ob_start(); | |||
var_dump($some_variable); | |||
$result = ob_get_clean(); | |||
error_log($result, 3, 'd:/wamp/logs/php_error.log'); | |||
</pre> | |||
==== IIS ==== | ==== IIS ==== | ||