Skip to content

Instantly share code, notes, and snippets.

@hutnikau
Created November 23, 2016 07:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hutnikau/3c14f6a648457ff9872a9674a3d54ffe to your computer and use it in GitHub Desktop.
Save hutnikau/3c14f6a648457ff9872a9674a3d54ffe to your computer and use it in GitHub Desktop.
m.php
<?php
class A
{
public static function m()
{
var_dump(1);
}
}
$inst = new A();
$inst->m();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment