Answers for "how to console.log in php termina;l"

PHP
6

php console log

// Assuming you are wishing to log to the JS Console...

<?php
	function consoleLog($msg) {
		echo '<script type="text/javascript">' .
          'console.log(' . $msg . ');</script>';
	}

	consoleLog('Hello, console!');
?>
Posted by: Guest on March-07-2020
1

php console log

echo("<script type='text/javascript'> console.log($msg);</script>");
Posted by: Guest on February-18-2021

Browse Popular Code Answers by Language