DevelopPHP
home Forum gear home

Libraries book

HTML Library CSS Library JavaScript Library PHP Library

Videosbook

PHP and MySQL JavaScript HTML and CSS Vector and 3D Flash Actionscript Android Dev Miscellaneous

Resourcesbook

Website Hosting
highlight_string() Function For Displaying Colored PHP Syntax   Share / Like
PHP comes equipped with its own syntax highlighter to color your script in case you have the need to show or share your PHP scripts on your web page. For script that you put on a page intantionally for people to view or copy and paste. It only handles highlighting PHP so if you need an "all language" highlighter you can get a free open source Javascript based code syntax highlighter. But if all you need is to highlight PHP... save yourself the overhead of installing a thick Javascript syntax highlighter into your pages that could slow your pages down. This built in PHP syntax highlighting method has virtually no resource footprint when used on your pages.

Place the code to be highlighted in between the single quotes of the function. Try it out yourself on any of your PHP web pages. 

NOTE: Be sure to place the escape ( ) character before any single quotes you may happen to have in your PHP script placed into the function or it will not run.

Learn HTML
<p>Here is my awesome PHP script I want to share</p>
<div style=" padding:10px; background-color:#D9ECFF;">
<?php 
highlight_string('<?php 
// Start of my PHP code
$var1 = 6; 
$var2 = 9; 
$var3 = $var1 + $var2; 
echo "Var3 is" . $var3; // Var3 is 15
?>');
?>
</div>

Develop PHP browser display window

Here is my awesome PHP script I want to share

<?php 
// Start of my PHP code
$var1 6
$var2 9
$var3 $var1 $var2
echo 
"Var3 is" $var3// Var3 is 15
?>

Home   •   Terms of Use   •   Developer Forums   •   T-Shirts   •   RSS   •   Classroom Chalkboard   •   Donate   •   Top ↑
Popular In PHP / MySQL E-Commerce Store Production
Social Network Website Building
Image Upload / Photo Processing
CMS Software Programming
Mass Email Systems
Magic XML Data
Search Programming
Popular In JavaScript JSON Programming
Ajax Programming
Animating Elements
WYSIWYG Programming
Date/Time Programming
DOM Scripting
Object Reference
Popular In HTML Canvas Element
New Form Elements
Audio Element
Video Element
Drag and Drop
Event Handling
Element Grouping
Popular In CSS Custom Font Embedding
Dynamic Fit Backgrounds
Theatre Mode
Box Overlays
CSS Level 1 Properties
CSS Level 2 Properties
CSS Level 3 Properties
©2013 DevelopPHP   |   Navigate to related domains HTML5