Admit that 228 is extended ASCII.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@132374 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Torben Wilson 2003-06-18 19:10:04 +00:00
parent 219600d52e
commit 074b463f6d

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.62 $ -->
<!-- $Revision: 1.63 $ -->
<chapter id="language.variables">
<title>Variables</title>
@ -37,7 +37,7 @@ echo "$var, $Var"; // outputs "Bob, Joe"
$4site = 'not yet'; // invalid; starts with a number
$_4site = 'not yet'; // valid; starts with an underscore
$täyte = 'mansikka'; // valid; 'ä' is ASCII 228.
$täyte = 'mansikka'; // valid; 'ä' is (Extended) ASCII 228.
?>
]]>
</programlisting>