<?php // Assumes the string will be used as ASCII or an ASCII-compatible encoding $str = "The ...

منذ 2024-07-27
// 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);
?>

60db7cc5b3763

  • 0
  • 0
  • 2

هل تود تلقي التنبيهات من موقع طريق الاسلام؟

نعم أقرر لاحقاً