Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Hallo,
ich bin php Anfänger und meine Frage ist ziemlich rudimentär.
Wie kann ich in einem php Dokument debuggen, mir z.B. ein Objekt oder Variable in der Konsole ausgeben lassen?
Im Prinzip suche ich ein console.log(); für PHP ;-)
function l () {
echo '<pre>';
call_user_func_array('var_dump', func_get_args());
echo '</pre>';
}