Skip to content

Instantly share code, notes, and snippets.

@msjyoo
Created December 7, 2015 10:00
Show Gist options
  • Save msjyoo/d34ceab9464503c04b06 to your computer and use it in GitHub Desktop.
Save msjyoo/d34ceab9464503c04b06 to your computer and use it in GitHub Desktop.
<?php
namespace test {
$a = 1;
}
namespace test2 {
var_dump($a++);
}
namespace test {
var_dump($a++);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment