1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
--TEST--
uploadprogress_get_contents - Returns contents of file up to maxlen
--SKIPIF--
<?php
if (!extension_loaded('uploadprogress')) exit('skip extension not loaded');
--INI--
uploadprogress.get_contents = On
--FILE--
<?php
ini_set('uploadprogress.file.contents_template', dirname(__FILE__) . '/mocks/get_contents/upload_contents_%s');
$contents = uploadprogress_get_contents('variation003', 'formFieldId', 57);
echo $contents;
--EXPECTF--
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|