PHP Classes

File: chars_utils.php

Recommend this page to a friend!
  Classes of Angel Alberto Briceño Obregón   PHP Reporting Library   chars_utils.php   Download  
File: chars_utils.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Reporting Library
Generate reports with database data
Author: By
Last change:
Date: 6 years ago
Size: 223 bytes
 

Contents

Class file image Download
<?php

$cada
= 4;
$contador=0;
for (
$i=0;$i<256;$i++) {
   
$contador++;
    echo
"CHR($i) = " . chr($i)." = \u00".dechex($i). " , ";
    if (
$contador==$cada) {
        echo
"\n";
       
$contador = 0;
    }
}
echo
"\n";