Answers for "is there a console for php"

PHP
2

console php

//display message in console

<?php
	function console_log($msg) {
		echo '<script>' .
          'console.log("'.$msg .' ")</script>';
	}

	console_log("Hi there!");
?>
Posted by: Guest on October-06-2020

Code answers related to "is there a console for php"

Browse Popular Code Answers by Language