Created
December 16, 2015 02:50
-
-
Save shouhei/3fef1faaa9b106de279e to your computer and use it in GitHub Desktop.
PHPのfputcsv検証
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $f = new ReflectionFunction("fputcsv"); | |
| $params = $f->getParameters(); | |
| var_dump($params); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $f = new ReflectionMethod("SplFileObject","fputcsv"); | |
| $params = $f->getParameters(); | |
| var_dump($params); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment