Searched refs:local_file (Results 1 – 2 of 2) sorted by relevance
187 * @param string $local_file191 public function get($remote_file, $local_file = null, $progressCallback = null) argument220 if (is_resource($local_file)) {221 $fp = $local_file;222 } elseif (!is_null($local_file)) {223 $fp = @fopen($local_file, 'wb');259 if (is_null($local_file)) {
2363 * @param string|bool|resource|callable $local_file2370 …public function get($remote_file, $local_file = false, $offset = 0, $length = -1, $progressCallbac… argument2400 if (is_resource($local_file)) {2401 $fp = $local_file;2406 if ($local_file !== false && !is_callable($local_file)) {2407 $fp = fopen($local_file, 'wb');2416 … $fclose_check = $local_file !== false && !is_callable($local_file) && !is_resource($local_file);2463 if ($local_file === false) {2465 } elseif (is_callable($local_file)) {2466 $local_file($temp);[all …]