Skip to content

Instantly share code, notes, and snippets.

@kobus1998
Created September 3, 2018 17:48
Show Gist options
  • Save kobus1998/5ee74065dddb7ae3a3d2e6eb7722a3b9 to your computer and use it in GitHub Desktop.
Save kobus1998/5ee74065dddb7ae3a3d2e6eb7722a3b9 to your computer and use it in GitHub Desktop.
Model to string
<?php
class Model
{
public function __toString() {
return json_encode(get_object_vars($this));
}
}
$model = new Model();
$model->x = 1;
$model->y = 2;
echo (string) $model; # {"x":1,"y":2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment