mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
5 lines
148 B
PHP
5 lines
148 B
PHP
<?php
|
|
$text = htmlspecialchars(file_get_contents(__FILE__));
|
|
$html = preg_replace('/(\$[a-z]\w*)/is', '<b>$1</b>', $text);
|
|
echo "<pre>$html</pre>";
|