Testing: Difference between revisions

Jump to navigation Jump to search
130 bytes added ,  2 July 2012
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 ====

Navigation menu