Skip to content

Instantly share code, notes, and snippets.

@iissnan
Created April 1, 2013 07:50
Show Gist options
  • Save iissnan/5283724 to your computer and use it in GitHub Desktop.
Save iissnan/5283724 to your computer and use it in GitHub Desktop.
Create a object in PHP without a class
<?php
$user = (object) array("name" => "vin", "title" => "unkown");
echo $user->name; //vin
echo $user->title; //unkown
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment