PHP 8.5.0 Alpha 1 available for testing

Voting

: min(zero, two)?
(Example: nine)

The Note You're Voting On

alec dot hewitt at gmail dot com
2 years ago
Simple JS snippet to print phpinfo() inline with it's styles renamed. Thus leaving the container page unaffected and pretty.

<script>
document.write(`<div id="phpinfo"><?php phpinfo(61) ?></div>`);
var x = document.querySelector('#phpinfo > style');
x.innerText = x.innerText.replaceAll('\n', '#phpinfo ');
</script>

<< Back to user notes page

To Top