D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
shubmkcj
/
designpitara.com
/
admin
/
ckeditor
/
plugins
/
codesnippetgeshi
/
dev
/
Filename :
colorize.php
back
Copy
<?php if ( function_exists( 'stream_resolve_include_path' ) && stream_resolve_include_path( 'geshi/geshi.php' ) === FALSE ) { die( '<pre class="html">Please install the geshi library. Refer to plugins/codesnippetgeshi/README.md for more information.</pre>' ); } include_once 'geshi/geshi.php'; $json_string = file_get_contents( 'php://input' ); $json_object = json_decode( $json_string ); $geshi = new GeSHi( $json_object->html, $json_object->lang ); echo $geshi->parse_code();