Skip to content

Instantly share code, notes, and snippets.

@pedropbazzo
Created December 29, 2020 02:56
Show Gist options
  • Save pedropbazzo/747270919fd157d8a46cf1a5cf9a683f to your computer and use it in GitHub Desktop.
Save pedropbazzo/747270919fd157d8a46cf1a5cf9a683f to your computer and use it in GitHub Desktop.
<?php
class Car {
function Car() {
$this->model = "Tesla";
}
}
// create an object
$Lightning = new Car();
// show object properties
echo $Lightning->model;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment