> Online tutorial : chr() in php
Showing posts with label chr() in php. Show all posts
Showing posts with label chr() in php. Show all posts

chr() in php

chr()
The chr() function returns a character from the specified ASCII value
syntax
chr(ascii)
Example

<?php
// returns a character from the specified ASCII value
echo chr(52);
echo chr(052);
?>
Output
4
*