mirror of
https://github.com/cytopia/devilbox.git
synced 2025-06-19 07:38:19 +00:00
Update .devilbox/www/htdocs/xdebug.php
Co-authored-by: cytopia <cytopia@everythingcli.org>
This commit is contained in:
@ -16,7 +16,13 @@
|
|||||||
<style>
|
<style>
|
||||||
body {width: 100% !important;}
|
body {width: 100% !important;}
|
||||||
</style>
|
</style>
|
||||||
|
<?php if (($version = phpversion('xdebug')) === false): ?>
|
||||||
|
<p><code>xdebug</code> module is not enabled.</p>
|
||||||
|
<?php elseif (!function_exists('xdebug_info')): ?>
|
||||||
|
<p>Xdebug info only available with <code>xdebug 3.x.x</code> or greater. Your version is <code>xdebug <?php echo $version;?></code></p>
|
||||||
|
<?php else:?>
|
||||||
<?php xdebug_info(); ?>
|
<?php xdebug_info(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div><!-- /.container -->
|
</div><!-- /.container -->
|
||||||
|
Reference in New Issue
Block a user