Skip to content

Instantly share code, notes, and snippets.

@cherifGsoul
Last active December 20, 2015 09:29
Show Gist options
  • Select an option

  • Save cherifGsoul/6107923 to your computer and use it in GitHub Desktop.

Select an option

Save cherifGsoul/6107923 to your computer and use it in GitHub Desktop.
Affichage de propriétés de classe PHP simple
<?php
$post = new Post();
$post->setTitle("Titre pour mon article");
echo $post->getTitle(); // affiche "Titre pour mon article"
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment