Skip to content

Instantly share code, notes, and snippets.

@shouhei
Created December 16, 2015 02:50
Show Gist options
  • Select an option

  • Save shouhei/3fef1faaa9b106de279e to your computer and use it in GitHub Desktop.

Select an option

Save shouhei/3fef1faaa9b106de279e to your computer and use it in GitHub Desktop.
PHPのfputcsv検証
<?php
$f = new ReflectionFunction("fputcsv");
$params = $f->getParameters();
var_dump($params);
<?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