x
 
<!DOCTYPE html>
<html>
<body>
<?php
class Fruit {
  public $name;
}
$apple = new Fruit();
$apple->name = "苹果";
echo $apple->name;
?>
 
</body>
</html>