Skip to content

Instantly share code, notes, and snippets.

@rampuero
Created February 18, 2015 06:07
Show Gist options
  • Save rampuero/62576c6d26da6ceaf90c to your computer and use it in GitHub Desktop.
Save rampuero/62576c6d26da6ceaf90c to your computer and use it in GitHub Desktop.
I create
<?php
class SimpleClass
{
//declaracion de la propiedad
public $var = 'informacion por default';
//declaracion de método
public function displayVar(){
echo $this->var;
}
}
$consulta = new SimpleClass();
echo $consulta->displayVar();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment