Function __global->get_upload_file_array

Definitions

sources/uploads.php

  • In Tapatalk files may be passed as arrays, so abstract that complexity.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$name ID_TEXT No No required parameter N/A N/A The name of the HTTP file parameter storing the upload
&$filearrays array Yes No required parameter N/A N/A Where we are storing our file arrays

Preview

Code (PHP)

/**
 * In Tapatalk files may be passed as arrays, so abstract that complexity.
 *
 * @param  ID_TEXT $name The name of the HTTP file parameter storing the upload
 * @param  array $filearrays Where we are storing our file arrays
 */

function get_upload_file_array(string $name, array &$filearrays)