Search
 
SCRIPT & CODE EXAMPLE
 

PHP

chr (PHP 4, PHP 5, PHP 7, PHP 8) chr — Generate a single-byte string from a number

<?php
// Assumes the string will be used as ASCII or an ASCII-compatible encoding

$str = "The string ends in escape: ";
$str .= chr(27); /* add an escape character at the end of $str */

/* Often this is more useful */

$str = sprintf("The string ends in escape: %c", 27);
?>
Comment

PREVIOUS NEXT
Code Example
Php :: array_map with user functions php and parameter php 
Php :: old value on edit table laravel 6 
Php :: how to disable auto prediction html input in laravel 
Php :: php pdo memory exhausted 
Php :: envato purchase code verfication in php 
Php :: Binance api buymarket php 
Php :: how to get last 10 digit from number in php 
Php :: base64 decode php 
Php :: if product open display this button 
Php :: how to stop message of laravel mix 
Php :: Laravel 9 Multiple File Upload 
Php :: import csv laravel 8 
Php :: function() use() php clousure examples 
Php :: how to keep some value on input field 
Php :: automatically create html page using php and mysql 
Php :: Store authentication status in a cookies 
Php :: how to add in massive php 
Php :: laravel eloquent where date today 
Php :: codeigniter round off function 
Php :: changing the autoload.php for algolia search 
Php :: wc php get order get coupon discount amount 
Php :: php array push key value 
Php :: how to hide .php in url 
Php :: undefined reference to 
Php :: doctrine findby criteria 
Php :: json decode php array 
Php :: export txt php 
Java :: hello world java 
Java :: how to loop javafx media player 
Java :: java random number 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =