Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php get content phpinfo without show

<?php
ob_start();
@phpinfo();
$content = ob_get_contents();
ob_end_clean();

//you get all the info in $content, but the user never see the data
 
PREVIOUS NEXT
Tagged: #php #content #phpinfo #show
ADD COMMENT
Topic
Name
6+8 =